1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 21:54:17 +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,7 +64,6 @@ class subtitle(object):
data += "\n"
i += 1
if is_py2:
data = data.encode('utf8')
return data
@ -99,7 +98,7 @@ class subtitle(object):
if int(n) > 0:
subs += "%s\n" % i.text
if is_py2:
subs = subs.encode('utf8')
return subs