test: Fix ascii conversion exception

This commit is contained in:
Denis Kenzior 2012-11-22 06:50:32 -06:00
parent bca0f5cde1
commit ef2066b004
1 changed files with 3 additions and 0 deletions

View File

@ -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):