From b467909fd65622f524ff1ba35f2cca53cd62afab Mon Sep 17 00:00:00 2001 From: Sharkitty Date: Wed, 1 Mar 2023 14:48:37 +0100 Subject: [PATCH] Using lower cases for families and a small fix --- .../modules/kitsu/plugins/publish/integrate_kitsu_note.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openpype/modules/kitsu/plugins/publish/integrate_kitsu_note.py b/openpype/modules/kitsu/plugins/publish/integrate_kitsu_note.py index 8e0037fcf7..bd43fe3b7c 100644 --- a/openpype/modules/kitsu/plugins/publish/integrate_kitsu_note.py +++ b/openpype/modules/kitsu/plugins/publish/integrate_kitsu_note.py @@ -102,11 +102,11 @@ class IntegrateKitsuNote(pyblish.api.ContextPlugin): ( False for family_req in self.family_requirements - if family_req['equality'] != 'equal' - and family_req['family'] == family + if family_req['equality'] == 'equal' + and family_req['family'].lower() != family or family_req['equality'] == 'not_equal' - and family_req['family'] == family + and family_req['family'].lower() == family ), True, )