projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0fd129e
)
Proposed fix for issue #193. Call base Exception constructor.
author
inactivist
<inactivist@gmail.com>
Thu, 8 Nov 2012 17:37:27 +0000
(09:37 -0800)
committer
inactivist
<inactivist@gmail.com>
Thu, 8 Nov 2012 17:37:27 +0000
(09:37 -0800)
tweepy/error.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/error.py
b/tweepy/error.py
index 8a760bb5d30827f23ed1a20e19a7f6ed9cbc5fc2..753e2fe676cf2f581a9fe032a71d9c4d638cc471 100644
(file)
--- a/
tweepy/error.py
+++ b/
tweepy/error.py
@@
-8,6
+8,7
@@
class TweepError(Exception):
def __init__(self, reason, response=None):
self.reason = unicode(reason)
self.response = response
+ Exception.__init__(self, reason)
def __str__(self):
return self.reason