diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-08-29 14:10:01 +0200 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-08-29 14:10:01 +0200 | 
| commit | f423a0882d8be220911959ba0206058cafc2d48e (patch) | |
| tree | b2752819d3f48638bfdc173862020deb2c4af6a1 /ishtar_common/wizards.py | |
| parent | 234fd0e319cccaaaf73348819ed3c066380ffaea (diff) | |
| download | Ishtar-f423a0882d8be220911959ba0206058cafc2d48e.tar.bz2 Ishtar-f423a0882d8be220911959ba0206058cafc2d48e.zip  | |
Wizards: fix empty image initialization
Diffstat (limited to 'ishtar_common/wizards.py')
| -rw-r--r-- | ishtar_common/wizards.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index ece1029e6..f522188a8 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -1002,7 +1002,7 @@ class Wizard(NamedUrlWizardView):                  try:                      data[k] = data[k].path                  except ValueError: -                    pass +                    data[k] = None      def session_get_value(self, form_key, key, multi=False, multi_value=False):          """Get the value of a specific form"""  | 
