mirror of
https://github.com/harismuneer/Ultimate-Facebook-Scraper
synced 2024-11-10 14:14:23 +00:00
Merge pull request #58 from blwh/patch-1
Error in conditional statement
This commit is contained in:
commit
60e5e2cb91
1 changed files with 1 additions and 1 deletions
|
@ -685,7 +685,7 @@ def main():
|
|||
email = f.readline().split('"')[1]
|
||||
password = f.readline().split('"')[1]
|
||||
|
||||
if email or password:
|
||||
if not (email and password):
|
||||
print("Your email or password is missing. Kindly write them in credentials.txt")
|
||||
exit()
|
||||
|
||||
|
|
Loading…
Reference in a new issue