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

Commit

Permalink
Fix limit bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Cody Zacharias committed Mar 29, 2018
1 parent d4a7510 commit 2b2a1b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tweep.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ async def main():
else:
break
# Control when we want to stop scraping.
if arg.limit is not None and num <= int(arg.limit):
if arg.limit is not None and num >= int(arg.limit):
break

if arg.database:
Expand Down

0 comments on commit 2b2a1b3

Please sign in to comment.