1
0
mirror of https://gitlab.com/ytdl-org/youtube-dl.git synced 2025-11-01 21:50:12 -04:00

[ceskatelevize] Fix python 2.6 format issue

This commit is contained in:
Sergey M․
2015-01-07 05:03:34 +06:00
parent 27a82a1b93
commit 6309cb9b41

View File

@@ -145,7 +145,7 @@ class CeskaTelevizeIE(SubtitlesInfoExtractor):
if m:
yield m.group(1)
start, stop = (_msectotimecode(int(t)) for t in m.groups()[1:])
yield "{} --> {}".format(start, stop)
yield "{0} --> {1}".format(start, stop)
else:
yield line