Skip to content

Commit e38dc58

Browse files
committed
Another 1.8 issue
1 parent f05126a commit e38dc58

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name = "django-simple-import",
5-
version = "1.20",
5+
version = "1.21",
66
author = "David Burke",
77
author_email = "david@burkesoftware.com",
88
description = ("A Django import tool easy enough your users could use it"),

simple_import/forms.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,18 @@ class Meta:
99
model = ImportLog
1010
fields = ('name', 'import_file', 'import_type')
1111
model = forms.ModelChoiceField(ContentType.objects.all())
12-
13-
12+
13+
1414
class MatchForm(forms.ModelForm):
1515
class Meta:
1616
model = ColumnMatch
1717
exclude = ['header_position']
1818

19+
1920
class MatchRelationForm(forms.ModelForm):
2021
class Meta:
2122
model = RelationalMatch
2223
widgets = {
2324
'related_field_name': forms.Select(choices=(('', '---------'),))
2425
}
26+
fields = "__all__"

0 commit comments

Comments
 (0)