From c0a4b69e7e716a694c4e9b3c9247c885ec982f94 Mon Sep 17 00:00:00 2001 From: Philippe Nunes Date: Thu, 6 Sep 2012 16:38:47 +0200 Subject: [PATCH] test: iconId value is not a printable character --- test/list-calls | 9 +++++---- 1 file 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)