From: Harmon Date: Tue, 4 Dec 2018 15:36:28 +0000 (-0600) Subject: Fix code block in cursor tutorial X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=6baa0fcc8829413d093abc31ad42dfc931048809;p=tweepy.git Fix code block in cursor tutorial --- diff --git a/docs/cursor_tutorial.rst b/docs/cursor_tutorial.rst index 4d2741c..a4e6e44 100644 --- a/docs/cursor_tutorial.rst +++ b/docs/cursor_tutorial.rst @@ -103,7 +103,7 @@ If you want your results to include the full text of the long tweets make these .. code-block :: python -# example code -tweets = tweepy.Cursor(api.search, tweet_mode='extended') -for tweet in tweets: - content = tweet.full_text + # example code + tweets = tweepy.Cursor(api.search, tweet_mode='extended') + for tweet in tweets: + content = tweet.full_text