summaryrefslogtreecommitdiff
path: root/ishtar_common/wizards.py
diff options
context:
space:
mode:
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 d207286ab..8fe39b054 100644
--- a/ishtar_common/wizards.py
+++ b/ishtar_common/wizards.py
@@ -499,7 +499,7 @@ class Wizard(NamedUrlWizardView):
obj.pre_save()
try:
obj.full_clean()
- except ValidationError:
+ except ValidationError as e:
logger.warning(unicode(e))
return self.render(form_list[-1])
for dependant_item in other_objs: