fixing the default host import to be from pype

This commit is contained in:
Jakub Jezek 2020-05-14 09:59:05 +01:00
parent 00179b9714
commit ef0f346195

View file

@ -18,7 +18,7 @@ def main(env):
# Register Host (and it's pyblish plugins)
host_name = env["AVALON_APP"]
# TODO not sure if use "pype." or "avalon." for host import
host_import_str = f"avalon.{host_name}"
host_import_str = f"pype.{host_name}"
try:
host_module = importlib.import_module(host_import_str)