Fixed error message

This commit is contained in:
wikoreman 2018-10-02 10:50:14 +02:00
parent b3de7e2ec5
commit 6ab87afd9c

View file

@ -33,7 +33,7 @@ class ValidateOutputNode(pyblish.api.InstancePlugin):
# Check if type is correct
type_name = output_node.type().name()
if type_name not in ["output", "cam"]:
cls.log.error("Output node `%s` is an accepted type `output` "
cls.log.error("Output node `%s` is not an accepted type `output` "
"or `camera`" %
output_node.path())
return [output_node.path()]