Fix bug: plot_i18n_status generate /bin/python: bad interpreter

This commit is contained in:
Eldar Khayrullin 2016-08-03 14:14:16 +03:00
parent 4e8c08a27c
commit d9c481a91f
1 changed files with 2 additions and 2 deletions

View File

@ -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 ):