diff options
| author | Michael Biebl <biebl@debian.org> | 2018-05-11 22:08:45 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2018-05-11 22:08:45 +0200 |
| commit | ee9c73a923909e23a649407be77e25235d769e25 (patch) | |
| tree | e21c923621fa278e737da693df9eb60ea31a6067 /examples/python/gi/get_ips.py | |
| parent | f60117b41d5433be1b4a96d82cd11d0c3dce9b63 (diff) | |
New upstream version 1.10.8 upstream/1.10.8
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 66d154f2..77e1d171 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 |