From 6baa0fcc8829413d093abc31ad42dfc931048809 Mon Sep 17 00:00:00 2001 From: Harmon Date: Tue, 4 Dec 2018 09:36:28 -0600 Subject: [PATCH] Fix code block in cursor tutorial --- docs/cursor_tutorial.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 2.25.1