From 9a58e02257ae72e5492126f12b2367e660aedd1f Mon Sep 17 00:00:00 2001 From: Harmon Date: Wed, 8 May 2019 07:10:48 -0500 Subject: [PATCH] Update friends_timeline to home_timeline in code snippet documentation --- docs/code_snippet.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/code_snippet.rst b/docs/code_snippet.rst index 7b4f7bc..f838e2a 100644 --- a/docs/code_snippet.rst +++ b/docs/code_snippet.rst @@ -37,8 +37,8 @@ Pagination # Process the friend here process_friend(friend) - # Iterate through the first 200 statuses in the friends timeline - for status in tweepy.Cursor(api.friends_timeline).items(200): + # Iterate through the first 200 statuses in the home timeline + for status in tweepy.Cursor(api.home_timeline).items(200): # Process the status here process_status(status) -- 2.25.1