Fix encoding in service.py

This commit is contained in:
tomkat83 2016-03-08 13:09:15 +01:00
parent 56af183288
commit 15f934f77a

View file

@ -171,8 +171,7 @@ class Service():
self.welcome_msg = False
xbmcgui.Dialog().notification(
heading=self.addonName,
message=("%s %s" % (lang(33000), user.currUser)
).encode('utf-8'),
message="%s %s" % (lang(33000), user.currUser),
icon="special://home/addons/plugin.video.plexkodiconnect/icon.png",
time=2000,
sound=False)
@ -225,8 +224,9 @@ class Service():
window('emby_online', value="false")
xbmcgui.Dialog().notification(
heading=lang(33001).encode('utf-8'),
message=("%s %s" % (self.addonName, lang(33002))).encode('utf-8'),
heading=lang(33001),
message="%s %s"
% (self.addonName, lang(33002)),
icon="special://home/addons/plugin.video."
"plexkodiconnect/icon.png",
sound=False)
@ -244,7 +244,7 @@ class Service():
# Alert the user that server is online.
xbmcgui.Dialog().notification(
heading=self.addonName,
message=lang(33003).encode('utf-8'),
message=lang(33003),
icon="special://home/addons/plugin.video."
"plexkodiconnect/icon.png",
time=2000,