Merge pull request #58 from blwh/patch-1

Error in conditional statement
This commit is contained in:
Haris Muneer 2019-10-09 13:43:43 +05:00 committed by GitHub
commit 60e5e2cb91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()