Update tutorial 4.
authorJosh Roesslein <jroesslein@gmail.com>
Wed, 14 Oct 2009 17:55:56 +0000 (12:55 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Wed, 14 Oct 2009 17:55:56 +0000 (12:55 -0500)
tutorial/t4.py

index 9fb3688f5fb9baf3247b89747caab5b7ba8cfd4b..57291dcb531dbd93499b55265d0c2b99fe7cecae 100644 (file)
@@ -48,9 +48,8 @@ except tweepy.TweepError, e:
     print 'Failed to get timeline: %s' % e
 
 """
-By default Tweepy will only retry when a status code of 500, 502, or 503
-is returned by Twitter. All other codes result in an immediate TweepError.
-If we do not provide a retry_delay Tweepy by default does not wait between requests.
+By default Tweepy will retry on any non-200 status code returned by twitter.
+The default retry_delay is zero, so if no delay is provided Tweepy will retry right away.
 
 Let's say we want to retry on status code responses of 400 only.
 Here is how we do that...