summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/python/dbus/get-active-connection-uuids.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/python/dbus/get-active-connection-uuids.py b/examples/python/dbus/get-active-connection-uuids.py
index 9eefac20b2..6fe93d05da 100755
--- a/examples/python/dbus/get-active-connection-uuids.py
+++ b/examples/python/dbus/get-active-connection-uuids.py
@@ -49,7 +49,7 @@ for a in active:
c_proxy = bus.get_object("org.freedesktop.NetworkManager", connection_path)
connection = dbus.Interface(c_proxy, "org.freedesktop.NetworkManager.Settings.Connection")
settings = connection.GetSettings()
- print "%s (%s)" % (settings['connection']['id'], uuid)
+ print "%s (%s) - %s" % (settings['connection']['id'], uuid, settings['connection']['type'])
if len(active) == 0:
print "No active connections"