OP-2042 - better error message in validator

This commit is contained in:
Petr Kalis 2021-12-09 18:34:40 +01:00
parent 2f2116b4bd
commit 53bbae2cbd

View file

@ -67,7 +67,9 @@ class ValidateRenderedFrames(pyblish.api.InstancePlugin):
if not repre.get("files"):
msg = ("no frames were collected, "
"you need to render them")
"you need to render them.\n"
"Check properties of write node (group) and"
"select 'Local' option in 'Publish' dropdown.")
self.log.error(msg)
raise ValidationException(msg)