From 6ab87afd9c5c8e6679f7bbf3cda4f473c8bead4c Mon Sep 17 00:00:00 2001 From: wikoreman Date: Tue, 2 Oct 2018 10:50:14 +0200 Subject: [PATCH] Fixed error message --- colorbleed/plugins/houdini/publish/validate_output_node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colorbleed/plugins/houdini/publish/validate_output_node.py b/colorbleed/plugins/houdini/publish/validate_output_node.py index 18fcb4898f..d3393e1c33 100644 --- a/colorbleed/plugins/houdini/publish/validate_output_node.py +++ b/colorbleed/plugins/houdini/publish/validate_output_node.py @@ -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()]