Show list of technologies in a simpler format

This commit is contained in:
Marcel Holtmann 2009-11-18 11:52:39 +01:00
parent 9b4e898702
commit 7deca83e99
1 changed files with 6 additions and 1 deletions

View File

@ -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