From ba927f421e8fa9b2b0b32e0b572018de74dfcaa0 Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Wed, 20 Jan 2021 18:07:05 +0100 Subject: [PATCH] nuke fix review on write node --- pype/hosts/nuke/plugins/publish/precollect_writes.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pype/hosts/nuke/plugins/publish/precollect_writes.py b/pype/hosts/nuke/plugins/publish/precollect_writes.py index e7b1a30e01..9806e38633 100644 --- a/pype/hosts/nuke/plugins/publish/precollect_writes.py +++ b/pype/hosts/nuke/plugins/publish/precollect_writes.py @@ -44,7 +44,6 @@ class CollectNukeWrites(pyblish.api.InstancePlugin): first_frame = int(nuke.root()["first_frame"].getValue()) last_frame = int(nuke.root()["last_frame"].getValue()) frame_length = int(last_frame - first_frame + 1) - review = instance.data["review"] if node["use_limit"].getValue(): first_frame = int(node["first"].getValue()) @@ -102,10 +101,6 @@ class CollectNukeWrites(pyblish.api.InstancePlugin): collected_frames.insert(0, slate_frame) representation['files'] = collected_frames - # add review if any - if review: - representation["tags"].extend(["review", "ftrackreview"]) - instance.data["representations"].append(representation) except Exception: instance.data["representations"].append(representation)