From 992bd6d11b0e912921e494916ee47083cec788de Mon Sep 17 00:00:00 2001 From: William Colmenares Date: Wed, 12 Jun 2019 21:02:04 -0400 Subject: [PATCH] add response print --- ungleich_dns.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ungleich_dns.py b/ungleich_dns.py index 5321546..571b635 100644 --- a/ungleich_dns.py +++ b/ungleich_dns.py @@ -41,6 +41,7 @@ class ungleichDNS(object): ) try: response = urllib.request.urlopen(req).read() + print(response) except urllib.error.HTTPError as e: error_message = e.read() print(json.loads(error_message))