fix(global, nukestudio): fixing order of plugins

This commit is contained in:
Jakub Trllo 2019-06-07 15:12:04 +02:00
parent be47d589f9
commit 8d3f31c42a
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ class CollectProjectData(pyblish.api.ContextPlugin):
"""Collecting project data from avalon db"""
label = "Collect Project Data"
order = pyblish.api.CollectorOrder
order = pyblish.api.CollectorOrder - 0.1
def process(self, context):
# get project data from avalon db

View file

@ -4,7 +4,7 @@ import pype.api as pype
class CollectCurrentFile(pyblish.api.ContextPlugin):
"""Inject the current working file into context"""
order = pyblish.api.CollectorOrder
order = pyblish.api.CollectorOrder - 0.1
def process(self, context):
"""Todo, inject the current working file"""