aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-02-24 04:56:58 +0700
committerSergey M․ <dstftw@gmail.com>2017-02-24 04:56:58 +0700
commit0f57447de790fb2434cdd80d819876859ac4fcc0 (patch)
tree820ba6c00e76b3f908582f01d6696d3028897d16
parent19f3821821ada01fbf9b466402bc1d0366b3edb2 (diff)
downloadyoutube-dl-0f57447de790fb2434cdd80d819876859ac4fcc0.zip
youtube-dl-0f57447de790fb2434cdd80d819876859ac4fcc0.tar.gz
youtube-dl-0f57447de790fb2434cdd80d819876859ac4fcc0.tar.bz2
[postprocessor/ffmpeg] Add mising space (closes #12232)
-rw-r--r--youtube_dl/postprocessor/ffmpeg.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py
index 1881f48..96ddb3b 100644
--- 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)