From ed84cf293f9fc4fb8587672da707a44d92889e46 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 23 Apr 2020 15:41:11 +0200 Subject: [PATCH] fixed typo --- pype/plugins/global/publish/extract_review.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pype/plugins/global/publish/extract_review.py b/pype/plugins/global/publish/extract_review.py index 170193ff12..e2814d8eaf 100644 --- a/pype/plugins/global/publish/extract_review.py +++ b/pype/plugins/global/publish/extract_review.py @@ -54,7 +54,7 @@ class ExtractReview(pyblish.api.InstancePlugin): # Make sure cleanup happens and pop representations with "delete" tag. for repre in tuple(instance.data["representations"]): tags = repre.get("tags") or [] - if "delete" if tags: + if "delete" in tags: instance.data["representations"].remove(repre) def main_process(self, instance):