From 012f21ce86e12daeee549830b4cbfdca03991709 Mon Sep 17 00:00:00 2001 From: Allan Ihsan Date: Thu, 9 Jun 2022 11:17:01 +0300 Subject: [PATCH] Fix error messages. --- openpype/plugins/publish/extract_jpeg_exr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openpype/plugins/publish/extract_jpeg_exr.py b/openpype/plugins/publish/extract_jpeg_exr.py index e509063dca..874a1dc40d 100644 --- a/openpype/plugins/publish/extract_jpeg_exr.py +++ b/openpype/plugins/publish/extract_jpeg_exr.py @@ -83,12 +83,12 @@ class ExtractThumbnail(pyblish.api.InstancePlugin): self.log.info("Input can be read by OIIO, converting with oiiotool now.") thumbnail_created = self.create_thumbnail_oiio(full_input_path, full_output_path) # noqa else: - self.log.info("converting with") + self.log.info("Converting with FFMPEG because input can't be read by OIIO.") thumbnail_created = self.create_thumbnail_ffmpeg(full_input_path, full_output_path) # noqa # Skip the rest of the process if the thumbnail wasn't created if not thumbnail_created: - + self.log.warning("Thumbanil has not been created.") return new_repre = {