From 1df729c206c93b8b5752585fb98ab1bc18647824 Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Mon, 4 Nov 2019 20:31:21 +0100 Subject: [PATCH] fix(nuke): version data frameStart/end excluded handles --- pype/plugins/nuke/publish/collect_writes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/plugins/nuke/publish/collect_writes.py b/pype/plugins/nuke/publish/collect_writes.py index fa92192563..28470c94de 100644 --- a/pype/plugins/nuke/publish/collect_writes.py +++ b/pype/plugins/nuke/publish/collect_writes.py @@ -91,8 +91,8 @@ class CollectNukeWrites(pyblish.api.InstancePlugin): "handles": handle_start, "handleStart": handle_start, "handleEnd": handle_end, - "frameStart": first_frame, - "frameEnd": last_frame, + "frameStart": first_frame + handle_start, + "frameEnd": last_frame - handle_end, "version": int(version), "colorspace": node["colorspace"].value(), "families": [instance.data["family"]],