projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a5df615
)
Update API.update_profile_banner endpoint parameters
author
Harmon
<Harmon758@gmail.com>
Sat, 10 Apr 2021 14:22:59 +0000
(09:22 -0500)
committer
Harmon
<Harmon758@gmail.com>
Sat, 10 Apr 2021 14:29:52 +0000
(09:29 -0500)
offset_right -> offset_top
tweepy/api.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/api.py
b/tweepy/api.py
index 91b36c22cc2ab94fd47e0e7a2bb68dfacc602001..a4121972193da96228486b17a7c4f236d3151d0c 100644
(file)
--- a/
tweepy/api.py
+++ b/
tweepy/api.py
@@
-1941,7
+1941,7
@@
class API:
files = {'banner': open(filename, 'rb')}
return self.request(
'POST', 'account/update_profile_banner', endpoint_parameters=(
- 'width', 'height', 'offset_left', 'offset_
right
'
+ 'width', 'height', 'offset_left', 'offset_
top
'
), files=files, **kwargs
)