Skip to content

Commit

Permalink
fix misleading log line
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew committed Jun 7, 2020
1 parent 3c256d8 commit 8786a57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twitterscraper/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def query_single_page(query, lang, pos, retry=50, from_user=False, timeout=60):
pos = json_resp['min_position']
has_more_items = json_resp['has_more_items']
if not has_more_items:
logger.info("Twitter returned : 'has_more_items' ")
logger.info("Twitter response: 'has_more_items' == False ")
return [], None
else:
pos = None
Expand Down

1 comment on commit 8786a57

@lorellav
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried it, but it still returns a very limited amount of tweets..

Please sign in to comment.