From bf308ebecd36113f0ccc4c59ff1889c58aaa6a2a Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Mon, 15 Nov 2021 13:12:12 +0100 Subject: [PATCH] improving the output name with ext and upstream outputName value --- openpype/plugins/publish/extract_review.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openpype/plugins/publish/extract_review.py b/openpype/plugins/publish/extract_review.py index da1d493067..e500bb361d 100644 --- a/openpype/plugins/publish/extract_review.py +++ b/openpype/plugins/publish/extract_review.py @@ -247,6 +247,7 @@ class ExtractReview(pyblish.api.InstancePlugin): os.unlink(f) output_name = new_repre.get("outputName", "") + output_ext = new_repre["ext"] if output_name: output_name += "_" output_name += output_def["filename_suffix"] @@ -254,7 +255,7 @@ class ExtractReview(pyblish.api.InstancePlugin): output_name += "_noHandles" new_repre.update({ - "name": output_def["filename_suffix"], + "name": "{}_{}".format(output_name, output_ext), "outputName": output_name, "outputDef": output_def, "frameStartFtrack": temp_data["output_frame_start"],