From fd01499d9d9de5fb4c6f8cf975260db6ce353525 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Sun, 26 Feb 2012 13:01:36 +0100 Subject: [PATCH] test-connman: Use GetServices() instead GetProperties() GetProperties() does not return the services path anymore. Instead the GetServices() method should be used. --- test/test-connman | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/test/test-connman b/test/test-connman index e2ff23a..473af62 100755 --- a/test/test-connman +++ b/test/test-connman @@ -25,12 +25,7 @@ if len(sys.argv) < 2: sys.exit(1) def print_services(services): - for path in services: - service = dbus.Interface(bus.get_object("net.connman", path), - "net.connman.Service") - - properties = service.GetProperties() - + for path, properties in services: identifier = path[path.rfind("/") + 1:] if properties["Favorite"] == dbus.Boolean(1): @@ -51,9 +46,7 @@ if sys.argv[1] == "state": print "System is %s" % (properties["State"]) elif sys.argv[1] in ["services", "list", "show"]: - properties = manager.GetProperties() - - print_services(properties["Services"]) + print_services(manager.GetServices()) elif sys.argv[1] in ["autoconnect", "autoconn"]: if (len(sys.argv) < 3): -- 2.7.4