1
0
Fork 0
mirror of https://gitlab.com/dstftw/youtube-dl.git synced 2020-11-16 09:42:26 +00:00

Fix stderr print when ffmpeg fails

This commit is contained in:
Idan Kamara 2011-02-25 22:30:22 +02:00
parent c076845454
commit 1bd9258272

View file

@ -2676,7 +2676,7 @@ class FFmpegExtractAudioPP(PostProcessor):
status = self.run_ffmpeg(path, new_path, acodec, more_opts)
if not status:
self._downloader.to_stderr(u'WARNING: error running ffmpeg' % ret)
self._downloader.to_stderr(u'WARNING: error running ffmpeg')
return None
try: