This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
youtube-dl
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1.1k
Wiki
Activity
Browse Source
[ceskatelevize] Fix python 2.6 format issue
totalwebcasting
Sergey M․
10 years ago
parent
27a82a1b93
commit
6309cb9b41
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
youtube_dl/extractor/ceskatelevize.py
+ 1
- 1
youtube_dl/extractor/ceskatelevize.py
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
Write
Preview
Loading…
Cancel
Save