1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
This commit is contained in:
Jeremy Stretch
2016-09-16 10:31:42 -04:00
parent 2c7c0ce29d
commit 814a0e7344

View File

@@ -168,7 +168,6 @@ class CSVDataField(forms.CharField):
self.help_text = 'Enter one line per record in CSV format.'
def utf_8_encoder(self, unicode_csv_data):
# convert csv,reader to utf-8e
for line in unicode_csv_data:
yield line.encode('utf-8')