Hiero, Global: fixing after transition merge

This commit is contained in:
Jakub Jezek 2021-04-07 11:12:18 +02:00
parent 314fe85243
commit 92ae62004d
No known key found for this signature in database
GPG key ID: C4B96E101D2A47F3
3 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@ class CollectFrameRanges(pyblish.api.InstancePlugin):
""" Collect all framranges.
"""
order = pyblish.api.CollectorOrder
order = pyblish.api.CollectorOrder - 0.1
label = "Collect Frame Ranges"
hosts = ["hiero"]
families = ["clip", "effect"]

View file

@ -6,7 +6,7 @@ import openpype.hosts.hiero.api as phiero
avalon.api.install(phiero)
try:
__import__("pype.hosts.hiero.api")
__import__("openpype.hosts.hiero.api")
__import__("pyblish")
except ImportError as e:

View file

@ -127,7 +127,7 @@ def filter_pyblish_plugins(plugins):
plugin_kind = file.split(os.path.sep)[-2:-1][0]
# TODO: change after all plugins are moved one level up
if host_from_file == "pype":
if host_from_file == "openpype":
host_from_file = "global"
try: