Fix bug: plot_i18n_status generate /bin/python: bad interpreter
This commit is contained in:
parent
4e8c08a27c
commit
d9c481a91f
|
@ -1,4 +1,4 @@
|
|||
#!/bin/python
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#####################################
|
||||
#
|
||||
|
@ -23,7 +23,7 @@ data = []
|
|||
with open('i18n_status.csv', 'r') as csvfile:
|
||||
spamreader = csv.reader(csvfile, delimiter=';')
|
||||
for row in spamreader:
|
||||
data.append(row)
|
||||
data.append(row)
|
||||
|
||||
# Replace empyt values with zero and convert numbers to int
|
||||
for index,value in np.ndenumerate( data ):
|
||||
|
|
Loading…
Reference in New Issue