wrong action name in exception

This commit is contained in:
Jakub Jezek 2023-10-12 16:41:20 +02:00
parent bf6303a908
commit dfbc11bca5
No known key found for this signature in database
GPG key ID: 730D7C02726179A7

View file

@ -24,7 +24,7 @@ class SelectInvalidNodesAction(pyblish.api.Action):
def process(self, context, plugin):
if not hasattr(plugin, "select"):
raise RuntimeError("Plug-in does not have repair method.")
raise RuntimeError("Plug-in does not have select method.")
# Get the failed instances
self.log.debug("Finding failed plug-ins..")