diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-18 12:05:59 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-18 12:05:59 +0200 |
commit | 2958c8298a3c6ee2ea51cec40a0836b034b15ad8 (patch) | |
tree | 744e5cc3182933fd18acc671dd420d78ad8f4d42 /ishtar_common/wizards.py | |
parent | 7bb9ae34e3cbde5dc1e51673be6f1f166841cc96 (diff) | |
download | Ishtar-2958c8298a3c6ee2ea51cec40a0836b034b15ad8.tar.bz2 Ishtar-2958c8298a3c6ee2ea51cec40a0836b034b15ad8.zip |
Change storage to match new wizard
Diffstat (limited to 'ishtar_common/wizards.py')
-rw-r--r-- | ishtar_common/wizards.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index bf567bebb..fcec91df2 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -127,8 +127,7 @@ class Wizard(NamedUrlWizardView): label = '' translated_keys = [] modification = None # True when the wizard modify an item - storage_name = \ - 'django.contrib.formtools.wizard.storage.session.SessionStorage' + storage_name = 'formtools.wizard.storage.session.SessionStorage' wizard_done_template = 'ishtar/wizard/wizard_done.html' wizard_done_window = '' wizard_confirm = 'ishtar/wizard/confirm_wizard.html' @@ -1160,8 +1159,7 @@ class SearchWizard(NamedUrlWizardView): model = None label = '' modification = None # True when the wizard modify an item - storage_name = \ - 'django.contrib.formtools.wizard.storage.session.SessionStorage' + storage_name = 'formtools.wizard.storage.session.SessionStorage' def get_wizard_name(self): """ |