fix(pype): fixing host attribute to hosts, it was not filtering plugins out of context

This commit is contained in:
Jakub Jezek 2019-03-31 19:31:24 +02:00
parent 8cd1bfa55f
commit 0c9186dc65
2 changed files with 3 additions and 2 deletions

View file

@ -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")

View file

@ -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")