From 76cb3b37e27b70840b999ceff69df02551078ef5 Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Fri, 13 Mar 2020 16:42:25 +0100 Subject: [PATCH] fix(global): adding back resolution attribtes wrong commitment had erased them --- pype/plugins/global/publish/extract_review.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pype/plugins/global/publish/extract_review.py b/pype/plugins/global/publish/extract_review.py index c7f286c3e2..81d7e1668a 100644 --- a/pype/plugins/global/publish/extract_review.py +++ b/pype/plugins/global/publish/extract_review.py @@ -37,6 +37,8 @@ class ExtractReview(pyblish.api.InstancePlugin): handle_start = inst_data.get("handleStart") handle_end = inst_data.get("handleEnd") pixel_aspect = inst_data.get("pixelAspect", 1) + resolution_width = inst_data.get("resolutionWidth", self.to_width) + resolution_height = inst_data.get("resolutionHeight", self.to_height) self.log.debug("Families In: `{}`".format(inst_data["families"])) self.log.debug("__ frame_start: {}".format(frame_start)) self.log.debug("__ frame_end: {}".format(frame_end)) @@ -344,7 +346,6 @@ class ExtractReview(pyblish.api.InstancePlugin): self.log.debug( "_ output_args: `{}`".format(output_args)) - if is_sequence: stg_dir = os.path.dirname(full_output_path)