We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7adaeb commit 165c13cCopy full SHA for 165c13c
setup.py
@@ -2,7 +2,7 @@
2
3
setup(
4
name = "django-simple-import",
5
- version = "1.14",
+ version = "1.15",
6
author = "David Burke",
7
author_email = "david@burkesoftware.com",
8
description = ("A Django import tool easy enough your users could use it"),
simple_import/views.py
@@ -342,7 +342,7 @@ def do_import(request, import_log_id):
342
header_row_field_names += [match.field_name]
343
header_row_default += [match.default_value]
344
header_row_null_on_empty += [match.null_on_empty]
345
- if key_column_name == cell.lower():
+ if key_column_name.lower() == cell.lower():
346
key_index = i
347
348
with transaction.commit_manually():
0 commit comments