Skip to content

Commit cf579f0

Browse files
committed
Merge pull request tweepy#217 from inactivist/2396a55264ebf1f227b559633b64933baa200b2f
Fix for issue tweepy#193
2 parents d2cc201 + 2396a55 commit cf579f0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tweepy/error.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ class TweepError(Exception):
88
def __init__(self, reason, response=None):
99
self.reason = unicode(reason)
1010
self.response = response
11+
Exception.__init__(self, reason)
1112

1213
def __str__(self):
1314
return self.reason

0 commit comments

Comments
 (0)