diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-08-27 15:39:16 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-08-27 15:40:02 +0200 |
commit | 29153f49b341858bf3da3b34fb5cc5772bafc83e (patch) | |
tree | 01a3b44e670c1fd23b783b7aaf456743b1ac6090 /youtube_dl | |
parent | 071a236c5a906b43f1e10f8fd80ba34b02130604 (diff) |
[downloader/hls] Use the correct program when reporting an error
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/downloader/hls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py index 9f29e2f81..4082e481a 100644 --- a/youtube_dl/downloader/hls.py +++ b/youtube_dl/downloader/hls.py @@ -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 |