projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f76086c
)
Fix super usage in TweepError initialization
author
Harmon
<Harmon758@gmail.com>
Sat, 4 May 2019 04:58:08 +0000
(23:58 -0500)
committer
Harmon
<Harmon758@gmail.com>
Sat, 4 May 2019 04:58:08 +0000
(23:58 -0500)
tweepy/error.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/error.py
b/tweepy/error.py
index 165d049da820bca3817e738979008803e92b285a..95b3ee71afe70d7ae80523bec4c7f1e39b9392d4 100644
(file)
--- a/
tweepy/error.py
+++ b/
tweepy/error.py
@@
-13,7
+13,7
@@
class TweepError(Exception):
self.reason = six.text_type(reason)
self.response = response
self.api_code = api_code
- super(TweepError, self).__init__(
self,
reason)
+ super(TweepError, self).__init__(reason)
def __str__(self):
return self.reason