From 0f98b9ec929fc37befd31146e6d79d5ab19a9b0c Mon Sep 17 00:00:00 2001 From: Ben Date: Fri, 2 Jun 2017 02:06:54 +1000 Subject: [PATCH] Trying a thing --- HTTPy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HTTPy.py b/HTTPy.py index bffc8ce..3f76729 100755 --- a/HTTPy.py +++ b/HTTPy.py @@ -37,7 +37,7 @@ def dig(inDomain, record): def ipLookup(inDomain): ipLook = subprocess.check_output(["geoiplookup", inDomain]) - host = subprocess.check_output(["host", inDomain]) #Do exit status check... + host = subprocess.check_call(["host", inDomain]) #Do exit status check... print ipLook, "PTR: ", host def getInput():