fix(global): adding back resolution attribtes

wrong commitment had erased them
This commit is contained in:
Jakub Jezek 2020-03-13 16:42:25 +01:00
parent 0123c8c577
commit 76cb3b37e2
No known key found for this signature in database
GPG key ID: C4B96E101D2A47F3

View file

@ -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)