diff --git a/pype/plugins/global/publish/collect_project_data.py b/pype/plugins/global/publish/collect_project_data.py index 0e9a64af81..d0519aa102 100644 --- a/pype/plugins/global/publish/collect_project_data.py +++ b/pype/plugins/global/publish/collect_project_data.py @@ -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 diff --git a/pype/plugins/nukestudio/publish/collect_current_file.py b/pype/plugins/nukestudio/publish/collect_current_file.py index 13a263966a..35da05e296 100644 --- a/pype/plugins/nukestudio/publish/collect_current_file.py +++ b/pype/plugins/nukestudio/publish/collect_current_file.py @@ -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"""