mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Merge pull request #93 from oddstr13/pr-fix-syntaxerror-1
Remove stray single quote resulting in crash
This commit is contained in:
commit
d7cc0a4afc
1 changed files with 1 additions and 1 deletions
|
@ -541,7 +541,7 @@ class FullSync(object):
|
|||
# can't find it, but I'm not comfortable
|
||||
# removing it right now
|
||||
LOG.info('Triggered the mystery function')
|
||||
LOG.debug('Mystery function item type: {}'.format('items[0][1]))
|
||||
LOG.debug('Mystery function item type: {}'.format(items[0][1]))
|
||||
obj = MEDIA[items[0][1]](self.server, jellyfindb, kodidb, direct_path).remove
|
||||
|
||||
for item in items:
|
||||
|
|
Loading…
Reference in a new issue