From d1b9ae96a0711812bd33be7204f792a8955e62e2 Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Mon, 20 Jul 2026 03:12:15 +0800 Subject: [PATCH] fix: correct 'inturruption' and 'occurd' typos in KeyboardInterrupt error message --- revIPLookup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/revIPLookup.py b/revIPLookup.py index a3026dc..af82bc6 100755 --- a/revIPLookup.py +++ b/revIPLookup.py @@ -43,7 +43,7 @@ def __init__(self,): self.main() except KeyboardInterrupt: - sys.exit('\n' + self.error + "Keyboard inturruption occurd, exiting the program.." + self.reset) + sys.exit('\n' + self.error + "Keyboard interruption occurred, exiting the program.." + self.reset) def get_args(self,): parser = argparse.ArgumentParser(description="revIPLookup will give you domain name(s) for the IP(s) you're given")