You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2017-06-07 07:13:39,216 (2ce4) : CRITICAL (core:574) - Exception (most recent call last):
File "C:\Program Files (x86)\Plex\Plex Media Server\Resources\Plug-ins-995f1dead\Framework.bundle\Contents\Resources\Versions\2\Python\Framework\components\runtime.py", line 843, in handle_request
result = f(**d)
File "C:\Users\anmic\AppData\Local\Plex Media Server\Plug-ins\IPTV.bundle\Contents\Code\__init__.py", line 322, in ReloadGuide
LoadGuide()
File "C:\Users\anmic\AppData\Local\Plex Media Server\Plug-ins\IPTV.bundle\Contents\Code\xmltv_parser.py", line 58, in LoadGuide
key = unicode(name.text, errors = 'replace')
TypeError: decoding Unicode is not supported
I fix this with replace in xmltv_parser.py: key = unicode(name.text, errors = 'replace')
to key = name.text
I'm not a pro with python, maybe there are another solution from author
The text was updated successfully, but these errors were encountered:
From iptv.log:
I fix this with replace in xmltv_parser.py:
key = unicode(name.text, errors = 'replace')
to
key = name.text
I'm not a pro with python, maybe there are another solution from author
The text was updated successfully, but these errors were encountered: