AHAHAHA not funny

This commit is contained in:
Benjamyn Love 2017-07-28 00:27:01 +10:00
parent 2fd49a8152
commit b626c6af07

View File

@ -110,8 +110,8 @@ def parseWhois(whioisInfo):
for str in whioisInfo: for str in whioisInfo:
str = str.strip() str = str.strip()
if NS.match(str) or D.match(str) or R.match(str) or U.match(str): if NS.match(str) or D.match(str) or R.match(str) or U.match(str):
if "domain" in str: if "domain" in str or "Domain" in str:
if "ok" in str: if "ok" in str or "OK" in str:
print bcolors.GREEN + str + bcolors.RESET print bcolors.GREEN + str + bcolors.RESET
else: else:
print bcolors.RED + str + bcolors.RESET print bcolors.RED + str + bcolors.RESET