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 | 1ea890bcc29d742c8b657ce335219e6e4a63b7f0 (patch) | |
tree | 08fbce2660b748cd220972efe60aafbf07f638c0 /ishtar_common/wizards.py | |
parent | 56959b906bf2e628a04a30be32a946a64d453c06 (diff) | |
download | Ishtar-1ea890bcc29d742c8b657ce335219e6e4a63b7f0.tar.bz2 Ishtar-1ea890bcc29d742c8b657ce335219e6e4a63b7f0.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: |