10000 fix: Change ObsoleteException to inherit from Exception instead of BaseException by fefi95 · Pull Request #490 · twilio/twilio-python · GitHub
[go: up one dir, main page]

Skip to content

fix: Change ObsoleteException to inherit from Exception instead of BaseException #490

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

Merged
merged 1 commit into from
Nov 1, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Changed the BaseException to Exception
  • Loading branch information
fefi95 committed Oct 31, 2019
commit da346ff421d04aacb801c86393ab936b3eab9e70
2 changes: 1 addition & 1 deletion twilio/base/obsolete.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import functools


class ObsoleteException(BaseException):
class ObsoleteException(Exception):
""" Base class for warnings about obsolete features. """
pass

Expand Down
0