mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-19 09:53:34 -06:00
Fix loading of CSV files with BOM
This commit is contained in:
parent
ab303db3dd
commit
f698c42c41
@ -180,7 +180,7 @@ class ImportForm(BootstrapMixin, forms.Form):
|
|||||||
if 'data_file' in self.files:
|
if 'data_file' in self.files:
|
||||||
self.data_field = 'data_file'
|
self.data_field = 'data_file'
|
||||||
file = self.files.get('data_file')
|
file = self.files.get('data_file')
|
||||||
data = file.read().decode('utf-8')
|
data = file.read().decode('utf-8-sig')
|
||||||
else:
|
else:
|
||||||
data = self.cleaned_data['data']
|
data = self.cleaned_data['data']
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user