From da346ff421d04aacb801c86393ab936b3eab9e70 Mon Sep 17 00:00:00 2001 From: Stefani Castellanos Date: Thu, 31 Oct 2019 14:50:14 -0500 Subject: [PATCH] Changed the BaseException to Exception --- twilio/base/obsolete.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twilio/base/obsolete.py b/twilio/base/obsolete.py index 6c89ba86dd..704c39dd94 100644 --- a/twilio/base/obsolete.py +++ b/twilio/base/obsolete.py @@ -2,7 +2,7 @@ import functools -class ObsoleteException(BaseException): +class ObsoleteException(Exception): """ Base class for warnings about obsolete features. """ pass