From a922b93202cc8ec898981109f260141bb0707ef2 Mon Sep 17 00:00:00 2001 From: Allan Ihsan Date: Mon, 6 Jun 2022 12:12:30 +0300 Subject: [PATCH] Fix path bug. --- openpype/plugins/publish/extract_jpeg_exr.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openpype/plugins/publish/extract_jpeg_exr.py b/openpype/plugins/publish/extract_jpeg_exr.py index daf7430a32..f474714780 100644 --- a/openpype/plugins/publish/extract_jpeg_exr.py +++ b/openpype/plugins/publish/extract_jpeg_exr.py @@ -159,9 +159,8 @@ class ExtractThumbnail(pyblish.api.InstancePlugin): # we just want one frame from movie files jpeg_items.append("-vframes 1") # output file - jpeg_items.append(path_to_subprocess_arg(src_path)) + jpeg_items.append(path_to_subprocess_arg(dst_path)) subprocess_command = " ".join(jpeg_items) - run_subprocess( subprocess_command, shell=True, logger=self.log )