summaryrefslogtreecommitdiffstats
path: root/test/get-icon
diff options
context:
space:
mode:
Diffstat (limited to 'test/get-icon')
-rwxr-xr-xtest/get-icon6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/get-icon b/test/get-icon
index eb6f0969..326d5621 100755
--- a/test/get-icon
+++ b/test/get-icon
@@ -24,4 +24,8 @@ sim = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.SimManager')
icon = sim.GetIcon(dbus.Byte(int(sys.argv[1])))
-print icon
+
+xpm = ""
+for byte in icon:
+ xpm += str(byte)
+print xpm