From ab467e36f040aeab2017d2cbe9de2f92c8680aed Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Wed, 2 Mar 2016 13:29:07 -0600 Subject: [PATCH] Fix unicode --- resources/lib/userclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/userclient.py b/resources/lib/userclient.py index 066f1a6b..ecda0a9c 100644 --- a/resources/lib/userclient.py +++ b/resources/lib/userclient.py @@ -349,7 +349,7 @@ class UserClient(threading.Thread): # If user has password if user['HasPassword'] == True: password = dialog.input( - heading="%s %s" % (lang(33008), username), + heading="%s %s" % (lang(33008), username.decode('utf-8')), option=xbmcgui.ALPHANUM_HIDE_INPUT) # If password dialog is cancelled if not password: