summaryrefslogtreecommitdiff
path: root/test/show-introspection
diff options
context:
space:
mode:
Diffstat (limited to 'test/show-introspection')
-rwxr-xr-xtest/show-introspection4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/show-introspection b/test/show-introspection
index 20e8a50c..4b6450f0 100755
--- a/test/show-introspection
+++ b/test/show-introspection
@@ -12,9 +12,9 @@ print object.Introspect()
manager = dbus.Interface(bus.get_object("net.connman", "/"),
"net.connman.Manager")
-properties = manager.GetProperties()
+technologies = manager.GetTechnologies()
-for path in properties["Technologies"]:
+for path, properties in technologies:
object = dbus.Interface(bus.get_object("net.connman", path),
"org.freedesktop.DBus.Introspectable")