From: Joshua Roesslein Date: Mon, 21 Jan 2013 18:17:42 +0000 (-0800) Subject: mentions -> mentions_timeline X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=359fb051d72d2cd8f46389b576fa0513c75265ee;p=tweepy.git mentions -> mentions_timeline --- diff --git a/tweepy/api.py b/tweepy/api.py index b75b244..2d15d09 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -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 )