fix(global): self.to_width and height is in another PR

This commit is contained in:
Jakub Jezek 2020-03-13 18:02:52 +01:00
parent 76cb3b37e2
commit d484e5108c
No known key found for this signature in database
GPG key ID: C4B96E101D2A47F3

View file

@ -37,8 +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)
resolution_width = inst_data.get("resolutionWidth", to_width)
resolution_height = inst_data.get("resolutionHeight", 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))