about summary refs log tree commit diff
path: root/examples/python/dbus/is-wwan-default.py
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2018-07-03 23:54:48 +0200
committerMichael Biebl <biebl@debian.org>2018-07-03 23:54:48 +0200
commit54de7f04d1fac5f29fd54ec4120ba2fc4f9b5714 (patch)
tree87729385ff8de744dc44d0b4cc75916494b2fd38 /examples/python/dbus/is-wwan-default.py
parent680d3db45106e7a18665a366e1b57e58cef61506 (diff)
parent329b15110c4b183d7a47552abe3a6a6ff933e817 (diff)
Merge branch 'experimental'
Diffstat (limited to 'examples/python/dbus/is-wwan-default.py')
-rwxr-xr-xexamples/python/dbus/is-wwan-default.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/python/dbus/is-wwan-default.py b/examples/python/dbus/is-wwan-default.py
index a4a3ff8e..10ae31fc 100755
--- a/examples/python/dbus/is-wwan-default.py
+++ b/examples/python/dbus/is-wwan-default.py
@@ -36,7 +36,7 @@ bus = dbus.SystemBus()
 proxy = bus.get_object("org.freedesktop.DBus", "/org/freedesktop/DBus")
 busdaemon = dbus.Interface(proxy, "org.freedesktop.DBus")
 if not busdaemon.NameHasOwner(NM_SERVICE_NAME):
-    print "NetworkManager not running"
+    print("NetworkManager not running")
     sys.exit(1)
 
 # Get a proxy for the NetworkManager object
@@ -46,11 +46,11 @@ props = dbus.Interface(proxy, DBUS_PROPS_IFACE)
 
 def found_connection_type(ctype):
     if ctype == '':
-        print "No active connection"
+        print("No active connection")
     elif ctype in ["gsm", "cdma", "bluetooth"]:
-        print "WWAN is default"
+        print("WWAN is default")
     else:
-        print "WWAN is not default"
+        print("WWAN is not default")
         sys.exit(0)
 
 # Shortcut #1, for NM 1.0
@@ -94,7 +94,7 @@ for a in active:
         break
 
 if default_is_wwan:
-    print "WWAN is default"
+    print("WWAN is default")
 else:
-    print "WWAN is not default"
+    print("WWAN is not default")