[ceskatelevize] Fix python 2.6 format issue
This commit is contained in:
@@ -145,7 +145,7 @@ class CeskaTelevizeIE(SubtitlesInfoExtractor):
|
|||||||
if m:
|
if m:
|
||||||
yield m.group(1)
|
yield m.group(1)
|
||||||
start, stop = (_msectotimecode(int(t)) for t in m.groups()[1:])
|
start, stop = (_msectotimecode(int(t)) for t in m.groups()[1:])
|
||||||
yield "{} --> {}".format(start, stop)
|
yield "{0} --> {1}".format(start, stop)
|
||||||
else:
|
else:
|
||||||
yield line
|
yield line
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user