mentions -> mentions_timeline
authorJoshua Roesslein <jroesslein@gmail.com>
Mon, 21 Jan 2013 18:17:42 +0000 (10:17 -0800)
committerJoshua Roesslein <jroesslein@gmail.com>
Mon, 21 Jan 2013 18:17:42 +0000 (10:17 -0800)
tweepy/api.py

index b75b24452581d00000bd6d87ec5f39fb60731288..2d15d0934d7afeaff13b428eae9b982f5f159547 100644 (file)
@@ -48,10 +48,10 @@ class API(object):
     )
 
     """ statuses/mentions """
-    mentions = bind_api(
-        path = '/statuses/mentions.json',
+    mentions_timeline = bind_api(
+        path = '/statuses/mentions_timeline.json',
         payload_type = 'status', payload_list = True,
-        allowed_param = ['since_id', 'max_id', 'count', 'page'],
+        allowed_param = ['since_id', 'max_id', 'count'],
         require_auth = True
     )