macaron
macaron copied to clipboard
except ValidationError, e: doest'n work in python3
Hi,
except ValidationError, e:
raise an error in python3 and i must change manually all occurrence of such code to :
except ValidationError as e:
Maybe it could be changed at the source.
Thanks in advance.