Fix unicode

This commit is contained in:
angelblue05 2016-03-02 13:29:07 -06:00
parent 7f9b0b879c
commit ab467e36f0

View file

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