summaryrefslogtreecommitdiffstats
path: root/contrib/unbound/libunbound/python/examples/dnssec-valid.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/unbound/libunbound/python/examples/dnssec-valid.py')
-rw-r--r--contrib/unbound/libunbound/python/examples/dnssec-valid.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/unbound/libunbound/python/examples/dnssec-valid.py b/contrib/unbound/libunbound/python/examples/dnssec-valid.py
index 3e05ddd..5c3cad9 100644
--- a/contrib/unbound/libunbound/python/examples/dnssec-valid.py
+++ b/contrib/unbound/libunbound/python/examples/dnssec-valid.py
@@ -48,12 +48,12 @@ if os.path.isfile("keys"):
status, result = ctx.resolve("www.nic.cz", RR_TYPE_A, RR_CLASS_IN)
if status == 0 and result.havedata:
- print "Result:", result.data.address_list
+ print("Result:", result.data.address_list)
if result.secure:
- print "Result is secure"
+ print("Result is secure")
elif result.bogus:
- print "Result is bogus"
+ print("Result is bogus")
else:
- print "Result is insecure"
+ print("Result is insecure")
OpenPOWER on IntegriCloud