2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-01 17:41:33 +00:00

Merge pull request #2948 from SchrodingersGat/column-extraction-fix

Check for empty column name in data importer
This commit is contained in:
Oliver
2022-05-09 08:15:00 +10:00
committed by GitHub

View File

@@ -421,7 +421,10 @@ class DataFileUploadSerializer(serializers.Serializer):
- Fuzzy match
"""
column_name = column_name.strip()
if not column_name:
return None
column_name = str(column_name).strip()
column_name_lower = column_name.lower()