From ef2066b004d2d59c7eecf292c887d4b1bbbd3cd5 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Thu, 22 Nov 2012 06:50:32 -0600 Subject: [PATCH] test: Fix ascii conversion exception --- test/monitor-ofono | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/monitor-ofono b/test/monitor-ofono index 84590ca2..85c0d4ad 100755 --- a/test/monitor-ofono +++ b/test/monitor-ofono @@ -48,6 +48,9 @@ def pretty(d): if t is tuple: return "( %s )" % d + if t is str: + return "%s" % d + return str(d) def property_changed(name, value, path, interface):