From ca5b11186b459bbe1fe2f7eb5020f5185a2fe316 Mon Sep 17 00:00:00 2001 From: Benajmyn Love Date: Wed, 26 Jul 2017 18:30:41 +1000 Subject: [PATCH] Fixed booboo --- HTTPy.py | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/HTTPy.py b/HTTPy.py index b1a5c17..1137f08 100755 --- a/HTTPy.py +++ b/HTTPy.py @@ -158,17 +158,17 @@ while running == 1: else: pass - else: - if whoOn == "W": - whois(inInput) else: - pass - #Condense dig calls - dig(inInput, "A") - dig(inInput, "MX") - dig(inInput, "TXT") - test = dig(inInput, "NS") - dig(inInput, "SRV") - soaRec = dig(inInput, "SOA") - print compareSOA(test, inInput, soaRec) - print '\n' \ No newline at end of file + if whoOn == "W": + whois(inInput) + else: + pass + #Condense dig calls + dig(inInput, "A") + dig(inInput, "MX") + dig(inInput, "TXT") + test = dig(inInput, "NS") + dig(inInput, "SRV") + soaRec = dig(inInput, "SOA") + print compareSOA(test, inInput, soaRec) + print '\n' \ No newline at end of file