about summary refs log tree commit diff
path: root/examples/python/gi/get_ips.py
diff options
context:
space:
mode:
authorIain Lane <iain@orangesquash.org.uk>2018-09-24 09:29:55 +0100
committerIain Lane <iain@orangesquash.org.uk>2018-09-24 09:29:55 +0100
commite152ec7bf4ba252ff9d3eb13eabd417b931dac9a (patch)
treec323cf856ee0bb8e44590670dd54c19653a55748 /examples/python/gi/get_ips.py
parentee9c73a923909e23a649407be77e25235d769e25 (diff)
Import Upstream version 1.12.2
Diffstat (limited to 'examples/python/gi/get_ips.py')
-rwxr-xr-xexamples/python/gi/get_ips.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/python/gi/get_ips.py b/examples/python/gi/get_ips.py
index 77e1d171..66d154f2 100755
--- a/examples/python/gi/get_ips.py
+++ b/examples/python/gi/get_ips.py
@@ -116,8 +116,8 @@ if __name__ == "__main__":
     dev = c.get_device_by_iface(dev_iface)
     if dev is None:
         sys.exit('Device \'%s\' not found' % dev_iface)
-    print "Device: %s - %s" % (dev_iface, dev.get_device_type().value_name)
-    print "---------------------------------------"
+    print("Device: %s - %s" % (dev_iface, dev.get_device_type().value_name))
+    print("---------------------------------------")
 
     print("IPv4 addresses:")
     print("---------------")
@@ -134,7 +134,7 @@ if __name__ == "__main__":
     show_routes(dev, socket.AF_INET)
     print
 
-    print "IPv6 addresses:"
+    print("IPv6 addresses:")
     print("---------------")
     show_addresses(dev, socket.AF_INET6)
     print
@@ -144,17 +144,17 @@ if __name__ == "__main__":
     show_gateway(dev, socket.AF_INET6)
     print
 
-    print "IPv6 routes:"
+    print("IPv6 routes:")
     print("------------")
     show_routes(dev, socket.AF_INET6)
     print
 
-    print "IPv4 DNS:"
+    print("IPv4 DNS:")
     print("------------")
     show_dns(dev, socket.AF_INET)
     print
 
-    print "IPv6 DNS:"
+    print("IPv6 DNS:")
     print("------------")
     show_dns(dev, socket.AF_INET6)
     print