summaryrefslogtreecommitdiff
path: root/ishtar_common/wizards.py
diff options
context:
space:
mode:
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
commit084a769891a46801f490bc8f469534e6434c0737 (patch)
tree08fbce2660b748cd220972efe60aafbf07f638c0 /ishtar_common/wizards.py
parente45b6042dd31f046226e29ad07e1638c7ff3b437 (diff)
downloadIshtar-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.py2
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: