From 70a1abaa444016c813dfec0ae5e668e998c9cfb7 Mon Sep 17 00:00:00 2001 From: Piero Rolando <72224217+pierorolando1@users.noreply.github.com> Date: Mon, 14 Feb 2022 22:04:50 -0500 Subject: [PATCH] Update Osintgram.py Only add the the Y and N option --- src/Osintgram.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Osintgram.py b/src/Osintgram.py index 139b0580..fbe753c1 100644 --- a/src/Osintgram.py +++ b/src/Osintgram.py @@ -1213,12 +1213,12 @@ def get_fwersemail(self): pc.printout("Do you want to get all emails? y/n: ", pc.YELLOW) value = input() - if value == str("y") or value == str("yes") or value == str("Yes") or value == str("YES"): + if value == str("y") or value == str("yes") or value == str("Y") or value == str("Yes") or value == str("YES"): value = len(followers) elif value == str(""): print("\n") return - elif value == str("n") or value == str("no") or value == str("No") or value == str("NO"): + elif value == str("n") or value == str("no") or value == str("N") or value == str("No") or value == str("NO"): while True: try: pc.printout("How many emails do you want to get? ", pc.YELLOW)