mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
fix(pype): fixing host attribute to hosts, it was not filtering plugins out of context
This commit is contained in:
parent
8cd1bfa55f
commit
0c9186dc65
2 changed files with 3 additions and 2 deletions
|
|
@ -16,9 +16,10 @@ class ExtractJpegEXR(pyblish.api.InstancePlugin):
|
|||
"""
|
||||
|
||||
label = "Extract Jpeg EXR"
|
||||
hosts = ["shell"]
|
||||
order = pyblish.api.ExtractorOrder
|
||||
families = ["imagesequence", "render", "write", "source"]
|
||||
host = ["shell"]
|
||||
|
||||
|
||||
def process(self, instance):
|
||||
start = instance.data.get("startFrame")
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ class ExtractQuicktimeEXR(pyblish.api.InstancePlugin):
|
|||
label = "Extract Quicktime EXR"
|
||||
order = pyblish.api.ExtractorOrder
|
||||
families = ["imagesequence", "render", "write", "source"]
|
||||
host = ["shell"]
|
||||
hosts = ["shell"]
|
||||
|
||||
def process(self, instance):
|
||||
fps = instance.data.get("fps")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue