From 806b05cf7ae67cb635a4c741da0cdb85d1f9c23e Mon Sep 17 00:00:00 2001 From: pukkandan Date: Thu, 14 Jan 2021 13:59:38 +0530 Subject: [PATCH] Fix write_debug in EmbedThumbnail Closes #17 --- youtube_dlc/postprocessor/embedthumbnail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dlc/postprocessor/embedthumbnail.py b/youtube_dlc/postprocessor/embedthumbnail.py index 8e78ede00..762ea38d8 100644 --- a/youtube_dlc/postprocessor/embedthumbnail.py +++ b/youtube_dlc/postprocessor/embedthumbnail.py @@ -124,7 +124,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor): self.to_screen('Adding thumbnail to "%s"' % filename) - self.verbose_message('AtomicParsley command line: %s' % shell_quote(cmd)) + self.write_debug('AtomicParsley command line: %s' % shell_quote(cmd)) p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) stdout, stderr = process_communicate_or_kill(p)