projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f496e6a
)
Add missing 'count' parameter to followers_ids
author
Aaron Hill
<aa1ronham@gmail.com>
Tue, 6 May 2014 10:21:19 +0000
(06:21 -0400)
committer
Aaron Hill
<aa1ronham@gmail.com>
Tue, 6 May 2014 10:22:00 +0000
(06:22 -0400)
tweepy/api.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/api.py
b/tweepy/api.py
index 3df6ebc671325bae39d79fb84388ceb9538d6302..04417b45c4a014b76dbd361f62e934c030f3803d 100644
(file)
--- a/
tweepy/api.py
+++ b/
tweepy/api.py
@@
-337,7
+337,7
@@
class API(object):
followers_ids = bind_api(
path = '/followers/ids.json',
payload_type = 'ids',
- allowed_param = ['id', 'user_id', 'screen_name', 'cursor']
+ allowed_param = ['id', 'user_id', 'screen_name', 'cursor'
, 'count'
]
)
""" followers/list """