From 814a0e7344dcc87ce654f01025ddbdddd5109541 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 16 Sep 2016 10:31:42 -0400 Subject: [PATCH] Tweak to #493 --- netbox/utilities/forms.py | 1 - 1 file changed, 1 deletion(-) diff --git a/netbox/utilities/forms.py b/netbox/utilities/forms.py index 28e4cdbb2..ce05c8ee3 100644 --- a/netbox/utilities/forms.py +++ b/netbox/utilities/forms.py @@ -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')