From f0a27970f15151b233ce1fcea40338846c5298a1 Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Sun, 14 Jun 2009 20:17:48 -0400 Subject: [PATCH] Removed needless id parameter --- tango_examples/get_user_timeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tango_examples/get_user_timeline.py b/tango_examples/get_user_timeline.py index a81c4c1..aa7bf97 100644 --- a/tango_examples/get_user_timeline.py +++ b/tango_examples/get_user_timeline.py @@ -2,6 +2,6 @@ import tango # We won't authenticate for this, but sometimes it's necessary twitter = tango.setup() -user_timeline = twitter.getUserTimeline(id=None, screen_name="ryanmcgrath") +user_timeline = twitter.getUserTimeline(screen_name="ryanmcgrath") print user_timeline