From ca4295b664512482019b102147931988cd1bf40e Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 25 Feb 2021 18:32:39 +0100 Subject: [PATCH] offset frame range by 1 frame in extract sequence plugin --- pype/hosts/tvpaint/plugins/publish/extract_sequence.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/hosts/tvpaint/plugins/publish/extract_sequence.py b/pype/hosts/tvpaint/plugins/publish/extract_sequence.py index c213b468c7..aa625a497a 100644 --- a/pype/hosts/tvpaint/plugins/publish/extract_sequence.py +++ b/pype/hosts/tvpaint/plugins/publish/extract_sequence.py @@ -157,8 +157,8 @@ class ExtractSequence(pyblish.api.Extractor): "ext": ext, "files": repre_files, "stagingDir": output_dir, - "frameStart": frame_start, - "frameEnd": frame_end, + "frameStart": frame_start + 1, + "frameEnd": frame_end + 1, "tags": tags } self.log.debug("Creating new representation: {}".format(new_repre))