From e27a0ad3ad89f1e990d6f03f1e4486e3b85a5c77 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 16 Jan 2017 20:41:28 +0100 Subject: Fix container creation (refs #3415) --- ishtar_common/wizards.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ishtar_common/wizards.py') diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index 4f0295421..ce1333c89 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -570,8 +570,8 @@ class Wizard(NamedUrlWizardView): # remove non relevant fields all_field_names = self.get_saved_model()._meta.get_all_field_names() for k in dct.copy(): - if (k.endswith('_id') and k[:-3] not in all_field_names) and \ - k not in all_field_names: + if not (k.endswith('_id') and k[:-3] in all_field_names) \ + and k not in all_field_names: dct.pop(k) saved_args = self.saved_args.copy() for k in saved_args: -- cgit v1.2.3