diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2014-01-07 00:02:20 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2014-01-07 00:02:20 +0100 |
commit | 6169f3eef6ce8ba45607751f0c60c8676933c52b (patch) | |
tree | f5a45107692f91ee3b72e8f2a2f170c41795e9ea /ishtar_common/wizards.py | |
parent | 73f649f978c5d597831da162b1202413e1b40e74 (diff) | |
download | Ishtar-6169f3eef6ce8ba45607751f0c60c8676933c52b.tar.bz2 Ishtar-6169f3eef6ce8ba45607751f0c60c8676933c52b.zip |
Archaeological sites: fix wizard management (refs #1586)
Diffstat (limited to 'ishtar_common/wizards.py')
-rw-r--r-- | ishtar_common/wizards.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index b775a0a36..d29a8458f 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -252,6 +252,7 @@ class Wizard(NamedUrlWizardView): def done(self, form_list, return_object=False, **kwargs): """Save to the model""" dct, m2m, whole_associated_models = {}, [], [] + # base_model for M2M for form in form_list: if not form.is_valid(): return self.render(form) |