From d6772d83a98d6485a2339b1f88e769a5a094fb91 Mon Sep 17 00:00:00 2001 From: Benjamyn Date: Wed, 16 Aug 2017 10:00:27 +1000 Subject: [PATCH] Added sane things --- HTTPy.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/HTTPy.py b/HTTPy.py index 7b1fe64..034b501 100755 --- a/HTTPy.py +++ b/HTTPy.py @@ -253,5 +253,7 @@ while running == 1: # print compareSOA(nsRec, inInput, soaRec) # print '\n' for sub in sub2check: - tmpDom = sub + "." + inInput - print newdig(tmpDom, "A") \ No newline at end of file + if sub != "": + tmpDom = sub + "." + inInput + subRec, subType = newdig(tmpDom, "A") + iterate(subRec, subType) \ No newline at end of file