changed "filesequence" target to "farm"

This commit is contained in:
iLLiCiTiT 2021-12-10 14:31:56 +01:00
parent 6e127d273c
commit 4b8dd165d2
4 changed files with 6 additions and 4 deletions

View file

@ -21,7 +21,8 @@ class CollectRenderedFiles(pyblish.api.ContextPlugin):
"""
order = pyblish.api.CollectorOrder - 0.2
targets = ["filesequence"]
# Keep "filesequence" for backwards compatibility of older jobs
targets = ["filesequence", "farm"]
label = "Collect rendered frames"
_context = None

View file

@ -5,7 +5,8 @@ class ValidateFileSequences(pyblish.api.ContextPlugin):
"""Validates whether any file sequences were collected."""
order = pyblish.api.ValidatorOrder
targets = ["filesequence"]
# Keep "filesequence" for backwards compatibility of older jobs
targets = ["filesequence", "farm"]
label = "Validate File Sequences"
def process(self, context):