diff options
author | Daniel Wagner <daniel.wagner@bmw-carit.de> | 2012-01-20 14:27:46 +0100 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-01-27 11:24:50 +0100 |
commit | ba75e35df73b8049d3932ca008a8f6c8308b610c (patch) | |
tree | ea8e69f72d8889695e23842d4f33ab98a1792050 /test | |
parent | 080e04b077f4c54da9045c8b4e874b92f98e9ceb (diff) | |
download | connman-ba75e35df73b8049d3932ca008a8f6c8308b610c.tar.gz connman-ba75e35df73b8049d3932ca008a8f6c8308b610c.tar.bz2 connman-ba75e35df73b8049d3932ca008a8f6c8308b610c.zip |
show-introspection: Fix technology introspection
Diffstat (limited to 'test')
-rwxr-xr-x | test/show-introspection | 4 |
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") |