From 1333587579332268c5d0b00f9780f5e562795458 Mon Sep 17 00:00:00 2001 From: Kumar Appaiah Date: Wed, 9 Dec 2009 23:18:52 -0600 Subject: [PATCH] Add optional "source" parameter to update_status. Note: source parameter only works with identi.ca API. Twitter ignores this parameter. Signed-off-by: Joshua Roesslein --- tweepy/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweepy/api.py b/tweepy/api.py index 0b46c9339..d479c3340 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -104,7 +104,7 @@ def __init__(self, auth_handler=None, path = '/statuses/update.json', method = 'POST', parser = parse_status, - allowed_param = ['status', 'in_reply_to_status_id', 'lat', 'long'], + allowed_param = ['status', 'in_reply_to_status_id', 'lat', 'long', 'source'], require_auth = True )