diff options
| author | Michael Biebl <biebl@debian.org> | 2018-04-23 18:00:21 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2018-04-23 18:00:21 +0200 |
| commit | f60117b41d5433be1b4a96d82cd11d0c3dce9b63 (patch) | |
| tree | 2dd55c4ab0fdcbe9cddb26adb4a554b1a45c73c8 /examples/python/gi/get_ips.py | |
| parent | 7e9ff09fcb2366b383b7ebbec80d2f6fff117290 (diff) | |
New upstream version 1.11.3 upstream/1.11.3
Diffstat (limited to 'examples/python/gi/get_ips.py')
| -rwxr-xr-x | examples/python/gi/get_ips.py | 12 |
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 |