File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 1010
1111* [ #7752 ] ( https://github.com/netbox-community/netbox/issues/7752 ) - Fix minimum version check under Python v3.10
1212* [ #7766 ] ( https://github.com/netbox-community/netbox/issues/7766 ) - Add missing outer dimension columns to rack table
13+ * [ #7780 ] ( https://github.com/netbox-community/netbox/issues/7780 ) - Preserve mutli-line values during CSV file import
1314* [ #7783 ] ( https://github.com/netbox-community/netbox/issues/7783 ) - Fix indentation of locations under site view
1415
1516---
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ def to_python(self, file):
224224 return None
225225
226226 csv_str = file .read ().decode ('utf-8' ).strip ()
227- reader = csv .reader (csv_str . splitlines ( ))
227+ reader = csv .reader (StringIO ( csv_str ))
228228 headers , records = parse_csv (reader )
229229
230230 return headers , records
You can’t perform that action at this time.
0 commit comments