From: Joshua Roesslein Date: Fri, 23 Apr 2010 20:16:14 +0000 (-0500) Subject: Fix an error in the cursor tutorial. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=d07ecd6351a26d83b5093447dc2909c95b1d8527;p=tweepy.git Fix an error in the cursor tutorial. Fixes issue #28 --- diff --git a/doc/cursor_tutorial.rst b/doc/cursor_tutorial.rst index f5dd0eb..be0b83a 100644 --- a/doc/cursor_tutorial.rst +++ b/doc/cursor_tutorial.rst @@ -85,7 +85,7 @@ What if you only want n items or pages returned? You pass into the items() or pa .. code-block :: python # Only iterate through the first 200 statuses - for status in Cursor(api.user_timeline).limit(200): + for status in Cursor(api.user_timeline).items(200): process_status(status) # Only iterate through the first 3 pages