From b052a8cfc90115a99e3427566c9884b4390c3a15 Mon Sep 17 00:00:00 2001 From: Jorge Date: Sun, 17 Jul 2016 14:21:46 +0200 Subject: [PATCH] Fixed a typo of a warning from the ffmpeg file. --- youtube_dl/postprocessor/ffmpeg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py index fa99b0c2a..5cf2482c0 100644 --- a/youtube_dl/postprocessor/ffmpeg.py +++ b/youtube_dl/postprocessor/ffmpeg.py @@ -454,7 +454,7 @@ class FFmpegMergerPP(FFmpegPostProcessor): required_version = '10-0' if is_outdated_version( self._versions[self.basename], required_version): - warning = ('Your copy of %s is outdated and unable to properly mux separate video and audio files, ' + warning = ('Your copy of %s is outdated and unable to properly mix separate video and audio files, ' 'youtube-dl will download single file media. ' 'Update %s to version %s or newer to fix this.') % ( self.basename, self.basename, required_version)