1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-01 05:31:15 +02:00

[downloader/hls] Use the correct program when reporting an error

This commit is contained in:
Jaime Marquínez Ferrándiz 2014-08-27 15:39:16 +02:00
parent 071a236c5a
commit 29153f49b3

View File

@ -42,5 +42,5 @@ def real_download(self, filename, info_dict):
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