From 1aadb518cf9a4fc35a28f9e7ed08b89a54c043f4 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 11 Nov 2020 15:13:56 +0100 Subject: [PATCH] set tag properly --- pype/plugins/tvpaint/publish/extract_sequence.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pype/plugins/tvpaint/publish/extract_sequence.py b/pype/plugins/tvpaint/publish/extract_sequence.py index 1e63aab432..5021862a88 100644 --- a/pype/plugins/tvpaint/publish/extract_sequence.py +++ b/pype/plugins/tvpaint/publish/extract_sequence.py @@ -124,7 +124,10 @@ class ExtractSequence(pyblish.api.Extractor): # Fill tags # TODO where to find out which tags should be added? - tags = ["review"] + if family_lowered in ("review", "renderlayer"): + tags = ["review", "ftrack"] + else: + tags = [] repre_files = [ os.path.basename(filepath)