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

Commit

Permalink
Fix skipping of usernames with underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
Snbig authored Jun 23, 2020
1 parent 4385a51 commit 8997afb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InstaTracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def main():
file.write('{}:{}\n'.format(e, username))
else:
print('[-] "{}" Not Found!\n'.format(e))
elif e.isalnum():
else:
userid = usernameToUserId(e)
if userid:
result.append('{}:{}'.format(userid, e))
Expand Down

0 comments on commit 8997afb

Please sign in to comment.