summaryrefslogtreecommitdiffstats
path: root/contrib/unbound/libunbound/python/examples/dns-lookup.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/unbound/libunbound/python/examples/dns-lookup.py')
-rw-r--r--contrib/unbound/libunbound/python/examples/dns-lookup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/unbound/libunbound/python/examples/dns-lookup.py b/contrib/unbound/libunbound/python/examples/dns-lookup.py
index 2821ed3..b3f4008 100644
--- a/contrib/unbound/libunbound/python/examples/dns-lookup.py
+++ b/contrib/unbound/libunbound/python/examples/dns-lookup.py
@@ -39,6 +39,6 @@ ctx.resolvconf("/etc/resolv.conf")
status, result = ctx.resolve("www.nic.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
if status == 0 and result.havedata:
- print "Result:", result.data.address_list
+ print("Result:", result.data.address_list)
elif status != 0:
- print "Error:", unbound.ub_strerror(status)
+ print("Error:", unbound.ub_strerror(status))
OpenPOWER on IntegriCloud