test: iconId value is not a printable character

This commit is contained in:
Philippe Nunes 2012-09-06 16:38:47 +02:00 committed by Denis Kenzior
parent e0e037539a
commit c0a4b69e7e
1 changed files with 5 additions and 4 deletions

View File

@ -24,7 +24,8 @@ for path, properties in modems:
print " [ %s ]" % (path)
for key in properties.keys():
val = str(properties[key])
print " %s = %s" % (key, val)
print
if key == 'Icon':
print " %s = %d" % (key, properties[key])
else:
val = str(properties[key])
print " %s = %s" % (key, val)