added error passing

This commit is contained in:
Benjamyn Love 2017-06-02 02:32:39 +10:00
parent b60c9da8b0
commit 357629f180

View File

@ -37,7 +37,13 @@ def dig(inDomain, record):
def ipLookup(inDomain):
ipLook = subprocess.check_output(["geoiplookup", inDomain])
host = subprocess.check_call(["host", inDomain]) #Do exit status check...
try:
host = subprocess.check_output(["host", inDomain]) #Do exit status check...
returncode = 0
except CalledProcessError as e:
output = o.output
returncode = e.returncode
print ipLook, "PTR: ", host
def getInput():