standalone: editorial plugins rename

fix gap issue https://github.com/pypeclub/OpenPype/pull/1738#issuecomment-876373865
This commit is contained in:
Jakub Jezek 2021-07-08 14:58:14 +02:00
parent 69e26ed588
commit d60eeb85b4
No known key found for this signature in database
GPG key ID: D8548FBF690B100A
2 changed files with 5 additions and 2 deletions

View file

@ -8,7 +8,7 @@ class CollectInstances(pyblish.api.InstancePlugin):
"""Collect instances from editorial's OTIO sequence"""
order = pyblish.api.CollectorOrder + 0.01
label = "Collect Instances"
label = "Collect Editorial Instances"
hosts = ["standalonepublisher"]
families = ["editorial"]
@ -84,6 +84,9 @@ class CollectInstances(pyblish.api.InstancePlugin):
if clip.name is None:
continue
if isinstance(clip, otio.schema.Gap):
continue
# skip all generators like black ampty
if isinstance(
clip.media_reference,

View file

@ -11,7 +11,7 @@ class CollectInstanceResources(pyblish.api.InstancePlugin):
# must be after `CollectInstances`
order = pyblish.api.CollectorOrder + 0.011
label = "Collect Instance Resources"
label = "Collect Editorial Resources"
hosts = ["standalonepublisher"]
families = ["clip"]