nobrin / macaron

A simple O/R mapper for SQLite
http://nobrin.github.com/macaron/
MIT License
31 stars 8 forks source link

except ValidationError, e: doest'n work in python3 #37

Open FrViPofm opened 9 years ago

FrViPofm commented 9 years ago

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.