Merge pull request #774 from croneter/fix-unicode
Fix sync not working due to non-ASCII Plex library names
This commit is contained in:
commit
392f3f6359
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ class Section(object):
|
|||
"'section_type': '{self.section_type}', "
|
||||
"'sync_to_kodi': {self.sync_to_kodi}, "
|
||||
"'last_sync': {self.last_sync}"
|
||||
"}}").format(self=self)
|
||||
"}}").format(self=self).encode('utf-8')
|
||||
__str__ = __repr__
|
||||
|
||||
def __nonzero__(self):
|
||||
|
|
Loading…
Reference in a new issue