make sure output frames are integers

This commit is contained in:
iLLiCiTiT 2020-04-28 19:17:03 +02:00
parent bd854fc7e1
commit 7b9f29f5bf

View file

@ -249,8 +249,8 @@ class ExtractReview(pyblish.api.InstancePlugin):
"handle_end": handle_end,
"frame_start_handle": frame_start_handle,
"frame_end_handle": frame_end_handle,
"output_frame_start": output_frame_start,
"output_frame_end": output_frame_end,
"output_frame_start": int(output_frame_start),
"output_frame_end": int(output_frame_end),
"pixel_aspect": instance.data.get("pixelAspect", 1),
"resolution_width": instance.data.get("resolutionWidth"),
"resolution_height": instance.data.get("resolutionHeight"),