mirror of https://github.com/morpheus65535/bazarr
Titulky provider some changes for python v3 compatibility
This commit is contained in:
parent
6e3c340829
commit
7171635441
|
@ -185,7 +185,7 @@ class TitulkyProvider(Provider):
|
|||
'Password': self.password}
|
||||
r = self.session.post(self.server_url, data, allow_redirects=False, timeout=10)
|
||||
|
||||
if 'BadLogin' in r.content:
|
||||
if 'BadLogin' in r.text:
|
||||
raise AuthenticationError(self.username)
|
||||
|
||||
logger.debug('Logged in')
|
||||
|
@ -259,9 +259,9 @@ class TitulkyProvider(Provider):
|
|||
langs = 'CZ'
|
||||
name = '%s (%s)' % (version, langs)
|
||||
|
||||
if ('CZ' in langs):
|
||||
if b'CZ' in langs:
|
||||
language = Language('ces')
|
||||
elif ('SK' in langs):
|
||||
elif b'SK' in langs:
|
||||
language = Language('slk')
|
||||
# read the item
|
||||
# subtitle = self.subtitle_class(language, page_link, year, version, page_link.replace("detail", "dld"))
|
||||
|
|
Loading…
Reference in New Issue