diff options
Diffstat (limited to 'test/list-modems')
-rwxr-xr-x | test/list-modems | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/test/list-modems b/test/list-modems index e1029542..557efd52 100755 --- a/test/list-modems +++ b/test/list-modems @@ -7,14 +7,9 @@ bus = dbus.SystemBus() manager = dbus.Interface(bus.get_object('org.ofono', '/'), 'org.ofono.Manager') -properties = manager.GetProperties() - -for path in properties["Modems"]: - modem = dbus.Interface(bus.get_object('org.ofono', path), - 'org.ofono.Modem') - - properties = modem.GetProperties() +modems = manager.GetModems() +for path, properties in modems: print "[ %s ]" % (path) for key in properties.keys(): @@ -64,5 +59,5 @@ for path in properties["Modems"]: else: val = str(properties[key]) print " %s = %s" % (key, val) - + print |