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 | 750fbe5e314aef2ca2bf8816da45f986b2f43c5c (patch) | |
| tree | 744e5cc3182933fd18acc671dd420d78ad8f4d42 /ishtar_common | |
| parent | b18a0b74a0a2463d741564cd36a427a03122ae2b (diff) | |
| download | Ishtar-750fbe5e314aef2ca2bf8816da45f986b2f43c5c.tar.bz2 Ishtar-750fbe5e314aef2ca2bf8816da45f986b2f43c5c.zip  | |
Change storage to match new wizard
Diffstat (limited to 'ishtar_common')
| -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):          """  | 
