diff options
Diffstat (limited to 'tools/EventClients/lib')
-rw-r--r-- | tools/EventClients/lib/python/xbmcclient.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/EventClients/lib/python/xbmcclient.py b/tools/EventClients/lib/python/xbmcclient.py index 424f53c64e..bce68e13b4 100644 --- a/tools/EventClients/lib/python/xbmcclient.py +++ b/tools/EventClients/lib/python/xbmcclient.py @@ -101,7 +101,7 @@ ACTION_BUTTON = 0x02 def format_string(msg): """ """ - return msg.encode() + b"\0" + return msg.encode('utf-8') + b"\0" def format_uint32(num): """ """ |