From 5c1a1a769023378408ecb6abd8b0e373db5636ab Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Mon, 7 Feb 2022 11:52:30 +0100 Subject: [PATCH] skip actions without label --- openpype/tools/launcher/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpype/tools/launcher/models.py b/openpype/tools/launcher/models.py index 02aeb094e3..ecee8b1575 100644 --- a/openpype/tools/launcher/models.py +++ b/openpype/tools/launcher/models.py @@ -320,7 +320,7 @@ class ActionModel(QtGui.QStandardItemModel): action = action[0] compare_data = {} - if action: + if action and action.label: compare_data = { "app_label": action.label.lower(), "project_name": self.dbcon.Session["AVALON_PROJECT"],