From 2fd49a81523418cb08483e3d81c1cd46997f4496 Mon Sep 17 00:00:00 2001 From: Ben Date: Fri, 28 Jul 2017 00:25:39 +1000 Subject: [PATCH] Fixed obvious fuck up --- HTTPy.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/HTTPy.py b/HTTPy.py index 39e27b0..8b28ff1 100755 --- a/HTTPy.py +++ b/HTTPy.py @@ -108,7 +108,7 @@ def parseWhois(whioisInfo): U = re.compile("^[Uu]") for str in whioisInfo: - str.strip() + str = str.strip() if NS.match(str) or D.match(str) or R.match(str) or U.match(str): if "domain" in str: if "ok" in str: @@ -117,7 +117,6 @@ def parseWhois(whioisInfo): print bcolors.RED + str + bcolors.RESET else: print str - print str def whois(inDomain): lookup = subprocess.check_output(["whois", inDomain])