From cff256b914e50b9c43730aadc18f743df73afa6c Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 14 Oct 2021 15:51:49 +0200 Subject: [PATCH] added same label for both creators --- openpype/hosts/testhost/plugins/create/test_creator_1.py | 1 + openpype/hosts/testhost/plugins/create/test_creator_2.py | 1 + 2 files changed, 2 insertions(+) diff --git a/openpype/hosts/testhost/plugins/create/test_creator_1.py b/openpype/hosts/testhost/plugins/create/test_creator_1.py index edb946424a..6ec4d16467 100644 --- a/openpype/hosts/testhost/plugins/create/test_creator_1.py +++ b/openpype/hosts/testhost/plugins/create/test_creator_1.py @@ -9,6 +9,7 @@ from openpype.pipeline import ( class TestCreatorOne(Creator): identifier = "test_one" + label = "test" family = "test" description = "Testing creator of testhost" diff --git a/openpype/hosts/testhost/plugins/create/test_creator_2.py b/openpype/hosts/testhost/plugins/create/test_creator_2.py index b3f04bd511..4b1430a6a2 100644 --- a/openpype/hosts/testhost/plugins/create/test_creator_2.py +++ b/openpype/hosts/testhost/plugins/create/test_creator_2.py @@ -8,6 +8,7 @@ from openpype.pipeline import ( class TestCreatorTwo(Creator): identifier = "test_two" + label = "test" family = "test" description = "A second testing creator"