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
[downloader/hls] Use the correct program when reporting an error
totalwebcasting
Jaime Marquínez Ferrándiz
10 years ago
parent
071a236c5a
commit
29153f49b3
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/downloader/hls.py
+ 1
- 1
youtube_dl/downloader/hls.py
View File
@ -42,5 +42,5 @@ class HlsFD(FileDownloader):
return
True
else
:
self
.
to_stderr
(
u
"
\n
"
)
self
.
report_error
(
u
'
ffmpeg
exited with code
%d
'
%
retval
)
self
.
report_error
(
u
'
%s
exited with code
%d
'
%
(
program
,
retval
)
)
return
False
Write
Preview
Loading…
Cancel
Save