Fix missing line

This commit is contained in:
Roy Nieterau 2022-08-29 19:22:06 +02:00
parent 2da8f036de
commit e81e3a7a10

View file

@ -547,7 +547,10 @@ class AbstractSubmitDeadline(pyblish.api.InstancePlugin):
file_path = None
for i in self._instance.context:
is_workfile =
is_workfile = (
"workfile" in i.data.get("families", []) or
i.data["family"] == "workfile"
)
if not is_workfile:
continue