From bb95542832ab2a61e9908c63e6f1715af19f34e5 Mon Sep 17 00:00:00 2001 From: Benajmyn Love Date: Thu, 27 Jul 2017 17:25:18 +1000 Subject: [PATCH] Added more colour --- HTTPy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HTTPy.py b/HTTPy.py index 01bea35..4a6aa9c 100755 --- a/HTTPy.py +++ b/HTTPy.py @@ -100,7 +100,7 @@ def options(inputs): def iterate(inArray, pre): count = 0 while count != len(inArray) - 1: - print pre, inArray[count] + print bcolors.OKBLUE + pre, inArray[count] + bcolors.ENDC count = count + 1 def parseWhois(whioisInfo): NS = re.compile("^[Nn]")