Skip to content

Commit

Permalink
Update cli.py
Browse files Browse the repository at this point in the history
  • Loading branch information
woluxwolu authored Feb 25, 2022
1 parent 12793ac commit b58ad94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twint/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def main():


def run_as_command():
if sys.version_info[:2] < (3,6):
if(sys.version_info.major < 3 or (sys.version_info.major == 3 and sys.version_info.minor < 6)):
print("[-] TWINT requires Python version 3.6+.")
sys.exit(0)

Expand Down

0 comments on commit b58ad94

Please sign in to comment.