[postprocessor/ffmpeg] Add mising space (closes #12232)
[youtube-dl] / youtube_dl / postprocessor / ffmpeg.py
index 652b1cb53608871e50fb48eaff222958d0f45375..96ddb3b36f2b9219af7edfe209b09ca3f34ae546 100644 (file)
@@ -278,7 +278,7 @@ class FFmpegExtractAudioPP(FFmpegPostProcessor):
 
         prefix, sep, ext = path.rpartition('.')  # not os.path.splitext, since the latter does not work on unicode in all setups
         new_path = prefix + sep + extension
-        
+
         information['filepath'] = new_path
         information['ext'] = extension
 
@@ -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)