Remove obsolete code
This commit is contained in:
parent
0111b66cd1
commit
a4f4d0b7a7
1 changed files with 2 additions and 3 deletions
|
@ -5,10 +5,9 @@ from logging import getLogger
|
||||||
from urllib import urlencode
|
from urllib import urlencode
|
||||||
from ntpath import dirname
|
from ntpath import dirname
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from xbmc import sleep
|
|
||||||
|
|
||||||
import artwork
|
import artwork
|
||||||
from utils import tryEncode, tryDecode, window, kodiSQL, CatchExceptions
|
from utils import window, kodiSQL, CatchExceptions
|
||||||
import plexdb_functions as plexdb
|
import plexdb_functions as plexdb
|
||||||
import kodidb_functions as kodidb
|
import kodidb_functions as kodidb
|
||||||
|
|
||||||
|
@ -918,7 +917,7 @@ class TVShows(Items):
|
||||||
'plex_type': v.PLEX_TYPE_EPISODE,
|
'plex_type': v.PLEX_TYPE_EPISODE,
|
||||||
'mode': 'play'
|
'mode': 'play'
|
||||||
}
|
}
|
||||||
filename = "%s?%s" % (path, tryDecode(urlencode(params)))
|
filename = "%s?%s" % (path, urlencode(params))
|
||||||
playurl = filename
|
playurl = filename
|
||||||
parentPathId = self.kodi_db.addPath(
|
parentPathId = self.kodi_db.addPath(
|
||||||
'plugin://plugin.video.plexkodiconnect/tvshows/')
|
'plugin://plugin.video.plexkodiconnect/tvshows/')
|
||||||
|
|
Loading…
Reference in a new issue