Skip to content
This repository has been archived by the owner on Sep 10, 2023. It is now read-only.

Commit

Permalink
fixes bug introduced in 71192d5. Closes #51
Browse files Browse the repository at this point in the history
  • Loading branch information
tommeagher committed May 11, 2018
1 parent 71192d5 commit 5771baa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def grab_tweets(api, max_id=None):
source_tweets = []
user_tweets = api.GetUserTimeline(screen_name=user, count=200, max_id=max_id, include_rts=True, trim_user=True, exclude_replies=True)
if user_tweets:
max_id = user_tweets[-1].id -
max_id = user_tweets[-1].id - 1
for tweet in user_tweets:
if tweet.full_text:
tweet.text = filter_status(tweet.full_text)
Expand Down

0 comments on commit 5771baa

Please sign in to comment.