Improve log readability

This commit is contained in:
Roy Nieterau 2024-04-04 17:11:26 +02:00
parent 1e0c115a5a
commit fca484dd01

View file

@ -59,7 +59,7 @@ class ValidateModelContent(pyblish.api.InstancePlugin,
invalid_bullets = "\n".join(f"- {node}" for node in invalid)
cls.log.error(
"These nodes are not allowed:\n{}\n"
"These nodes are not allowed:\n{}\n\n"
"The valid node types are: {}".format(
invalid_bullets, ", ".join(cls.allowed))
)