summaryrefslogtreecommitdiffstats
path: root/test/list-operators
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-11-18 11:52:39 +0100
committerMarcel Holtmann <marcel@holtmann.org>2009-11-18 11:52:39 +0100
commit7deca83e991a4a533175c1e45e5a4d82d8e64990 (patch)
tree639931d9320b222e26bb89992944d13e8e764280 /test/list-operators
parent9b4e8987023af85857e8207e7ea7d9eb054d2a1d (diff)
downloadofono-7deca83e991a4a533175c1e45e5a4d82d8e64990.tar.bz2
Show list of technologies in a simpler format
Diffstat (limited to 'test/list-operators')
-rwxr-xr-xtest/list-operators7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/list-operators b/test/list-operators
index 3e9e4082..545270b4 100755
--- a/test/list-operators
+++ b/test/list-operators
@@ -34,7 +34,12 @@ for path in properties["Modems"]:
print " [ %s ]" % (path)
for key in properties.keys():
- val = str(properties[key])
+ if key in ["Technologies"]:
+ val = ""
+ for i in properties[key]:
+ val += i + " "
+ else:
+ val = str(properties[key])
print " %s = %s" % (key, val)
print