summary refs log tree commit diff
path: root/examples/python/gi/device-state-ip4config.py
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2018-04-23 18:00:21 +0200
committerMichael Biebl <biebl@debian.org>2018-04-23 18:00:21 +0200
commitf60117b41d5433be1b4a96d82cd11d0c3dce9b63 (patch)
tree2dd55c4ab0fdcbe9cddb26adb4a554b1a45c73c8 /examples/python/gi/device-state-ip4config.py
parent7e9ff09fcb2366b383b7ebbec80d2f6fff117290 (diff)
New upstream version 1.11.3 upstream/1.11.3
Diffstat (limited to 'examples/python/gi/device-state-ip4config.py')
-rwxr-xr-xexamples/python/gi/device-state-ip4config.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/python/gi/device-state-ip4config.py b/examples/python/gi/device-state-ip4config.py
index 2a4a6221..b92a7b09 100755
--- a/examples/python/gi/device-state-ip4config.py
+++ b/examples/python/gi/device-state-ip4config.py
@@ -27,22 +27,22 @@ from gi.repository import GLib, NM
 
 #
 #  This example shows how to get NMIP4Config from NMDevice after it is activated.
-#   
+#
 #  We listen to notify::ip4-config glib signal. This signal is trigered by D-Bus
 #  PropertiesChanged for IP4Config that comes after StateChanged for NMDevice.
 #
 
 main_loop = None
-    
+
 def do_notify(self, property):
-    print "notify: %s" % property
+    print("notify: %s" % property)
     ip4cfg = self.get_ip4_config()
     if ip4cfg is not None:
-        print "ip4-config: %s" % ip4cfg.get_path()
+        print("ip4-config: %s" % ip4cfg.get_path())
         main_loop.quit()
 
 def state_changed(obj, arg1, arg2, arg3):
-    print "State changed: New: %d, Old: %d, Reason: %d" % (arg1, arg2, arg3)
+    print("State changed: New: %d, Old: %d, Reason: %d" % (arg1, arg2, arg3))
     # Device is connected
     if arg1 == 100:
         obj.connect('notify::ip4-config', do_notify)
@@ -57,8 +57,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("---------------------------------------")
 
     dev.connect('state-changed', state_changed)
     main_loop = GLib.MainLoop()