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

Commit

Permalink
Update instaloader. Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
jim60105 committed Jun 17, 2022
1 parent b01ea5d commit 5e7f8c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
requests~=2.21.0
dhooks~=1.1.4
pyyaml~=5.4.1
instaloader~=4.8.1
instaloader~=4.9.1
2 changes: 1 addition & 1 deletion src/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def login(self) -> bool:
isLogin = True
except instaloader.BadResponseException as e:
print(e, file=sys.stderr)
print(f'BadResponceException: This happens when your account is blocked by Instagram. Login from your mobile phone app to check what happened.', file=sys.stderr)
print(f'BadResponseException: This happens when your account is blocked by Instagram. Login from your mobile phone app to check what happened.', file=sys.stderr)
except instaloader.ConnectionException as e:
print(e, file=sys.stderr)
print(f'If you get 429, DO NOT login the account {self.username} from multiple instances at the same time. Neither from this program, nor from your mobile phone or PC.', file=sys.stderr)
Expand Down

0 comments on commit 5e7f8c9

Please sign in to comment.