-
Notifications
You must be signed in to change notification settings - Fork 542
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: catching classes that do not inherit from BaseException is not allowed #178
Comments
Hi Daniel, That's interesting, what version of Python are you using? |
Python 3.5 |
It works on 2.7 and 3.4... |
If you change exceptions=None to exceptions=tuple() does that work better? |
Side note is that I'm side loading the settings in order to get it to work with a flask app. It could be related to this Django bug, but I'm pretty close to figuring this out. |
So 3.5 also works for me. Both except None as e: |
This line blows up and should be changed to
The text was updated successfully, but these errors were encountered: