Sfoglia il codice sorgente

Fix stderr print when ffmpeg fails

Idan Kamara 14 anni fa
parent
commit
1bd9258272
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      youtube-dl

+ 1 - 1
youtube-dl

@@ -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: