youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 0f57447de790fb2434cdd80d819876859ac4fcc0
parent 19f3821821ada01fbf9b466402bc1d0366b3edb2
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 24 Feb 2017 04:56:58 +0700

[postprocessor/ffmpeg] Add mising space (closes #12232)

Diffstat:
Myoutube_dl/postprocessor/ffmpeg.py | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py @@ -536,8 +536,7 @@ class FFmpegSubtitlesConvertorPP(FFmpegPostProcessor): ext = sub['ext'] if ext == new_ext: self._downloader.to_screen( - '[ffmpeg] Subtitle file for %s is already in the requested' - 'format' % new_ext) + '[ffmpeg] Subtitle file for %s is already in the requested format' % new_ext) continue old_file = subtitles_filename(filename, lang, ext) sub_filenames.append(old_file)