diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-05-24 18:58:01 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-05-24 18:58:13 +0200 |
commit | 084a769891a46801f490bc8f469534e6434c0737 (patch) | |
tree | 08fbce2660b748cd220972efe60aafbf07f638c0 /ishtar_common/wizards.py | |
parent | e45b6042dd31f046226e29ad07e1638c7ff3b437 (diff) | |
download | Ishtar-084a769891a46801f490bc8f469534e6434c0737.tar.bz2 Ishtar-084a769891a46801f490bc8f469534e6434c0737.zip |
Fix EQUIV fileds on wizard save
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 e974942b7..49abe606f 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -510,7 +510,7 @@ class Wizard(NamedUrlWizardView): adds = {} # manage attributes relations if hasattr(self.model, 'ATTRS_EQUIV'): - for k in other_objs: + for k in other_objs.keys(): if k in self.model.ATTRS_EQUIV: new_k = self.model.ATTRS_EQUIV[k] if new_k in other_objs: |