1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-23 19:55:38 +01:00

subtitle: py3 fixes

This commit is contained in:
Johan Andersson 2015-03-12 21:39:36 +01:00
parent abd38b55ea
commit e449d8c471

View File

@ -64,8 +64,7 @@ class subtitle(object):
data += "\n"
i += 1
if is_py2:
data = data.encode('utf8')
data = data.encode('utf8')
return data
def json(self, subdata):
@ -99,8 +98,8 @@ class subtitle(object):
if int(n) > 0:
subs += "%s\n" % i.text
if is_py2:
subs = subs.encode('utf8')
subs = subs.encode('utf8')
return subs
def smi(self, subdata):