summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2012-08-09 10:28:27 -0700
committerMarcel Holtmann <marcel@holtmann.org>2012-08-09 10:28:27 -0700
commit5f1cb3690b9fdace8bd3d83ebd5fc58cad5b60bd (patch)
tree295aaacb4c0795b04db44700d5d2f5c4e8c1b979 /test
parent2d2075c9aeb6eb42d8881f3370b0ed28706aaa11 (diff)
downloadofono-5f1cb3690b9fdace8bd3d83ebd5fc58cad5b60bd.tar.bz2
test: Fix printing of modem property strings
Diffstat (limited to 'test')
-rwxr-xr-xtest/list-modems4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/list-modems b/test/list-modems
index 7e92474e..5726bc80 100755
--- a/test/list-modems
+++ b/test/list-modems
@@ -18,7 +18,7 @@ for path, properties in modems:
for i in properties[key]:
val += i + " "
else:
- val = str(properties[key])
+ val = properties[key]
print " %s = %s" % (key, val)
for interface in properties["Interfaces"]:
@@ -75,7 +75,7 @@ for path, properties in modems:
val += properties[key][i]
val += " }"
else:
- val = str(properties[key])
+ val = properties[key]
print " %s = %s" % (key, val)
print