diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-08-06 20:05:40 -0700 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-08-06 20:05:40 -0700 |
commit | 96a0aa27fbca9d508e920576d809a1237d6d47a7 (patch) | |
tree | 2c8d678d91a133c4e5a9f84a627d62903d93e4d3 /test/test-manager | |
parent | 473c3c902bd74a59c78b4053eaf3202089ae5b1f (diff) | |
download | connman-96a0aa27fbca9d508e920576d809a1237d6d47a7.tar.gz connman-96a0aa27fbca9d508e920576d809a1237d6d47a7.tar.bz2 connman-96a0aa27fbca9d508e920576d809a1237d6d47a7.zip |
Fix display of ConnectedTechnologies property
Diffstat (limited to 'test/test-manager')
-rwxr-xr-x | test/test-manager | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test-manager b/test/test-manager index 814f7ead..db9c12af 100755 --- a/test/test-manager +++ b/test/test-manager @@ -62,7 +62,8 @@ def print_properties(key, value): for key in properties.keys(): if key in ["Profiles", "Devices", "Connections", "Services"]: print_properties(key, properties[key]) - elif key in ["AvailableTechnologies", "EnabledTechnologies"]: + elif key in ["AvailableTechnologies", "EnabledTechnologies", + "ConnectedTechnologies"]: print "%s" % (key) list = "" for val in properties[key]: |