summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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