summaryrefslogtreecommitdiffstats
path: root/test/list-calls
diff options
context:
space:
mode:
Diffstat (limited to 'test/list-calls')
-rwxr-xr-xtest/list-calls9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/list-calls b/test/list-calls
index 53124dc1..2332b500 100755
--- a/test/list-calls
+++ b/test/list-calls
@@ -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)