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 | 5b3bfd2a9c26103ab840080cfb5e6105fbcc17d1 (patch) | |
| tree | b2752819d3f48638bfdc173862020deb2c4af6a1 | |
| parent | 9ce6bdd133dddfc291a814a3adc5ae344203092b (diff) | |
| download | Ishtar-5b3bfd2a9c26103ab840080cfb5e6105fbcc17d1.tar.bz2 Ishtar-5b3bfd2a9c26103ab840080cfb5e6105fbcc17d1.zip  | |
Wizards: fix empty image initialization
| -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"""  | 
