added ident test

This commit is contained in:
Benjamyn Love 2017-09-25 09:17:05 +10:00
parent fa50cc27aa
commit 2a66a25100

View File

@ -22,7 +22,7 @@ running = 1
pingOn = "p"
whoOn = "W"
phrases = ["ping", "whois", "quit", "clear", "help", "nameserver"]
indent = '\t'
def openFile(filename):
try:
@ -140,7 +140,7 @@ def iterate(inArray, pre):
if checkIfIP(inArray[count].split('.')) == 0:
tmpVal = isCNAME(inArray[count])
print bcolors.CYAN + pre, bcolors.GREEN + inArray[count] + bcolors.RESET + " -> " + bcolors.GREEN + tmpVal[0] + bcolors.RESET
print indent + bcolors.CYAN + pre, bcolors.GREEN + inArray[count] + bcolors.RESET + " -> " + bcolors.GREEN + tmpVal[0] + bcolors.RESET
else:
print bcolors.CYAN + pre, bcolors.GREEN + inArray[count] + bcolors.RESET
count = count + 1