From ef0f346195bccddc716e13b29ee84e80c5564b18 Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Thu, 14 May 2020 09:59:05 +0100 Subject: [PATCH] fixing the default host import to be from pype --- pype/services/adobe_communicator/lib/publish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pype/services/adobe_communicator/lib/publish.py b/pype/services/adobe_communicator/lib/publish.py index 2e7d993a60..a6fe991025 100644 --- a/pype/services/adobe_communicator/lib/publish.py +++ b/pype/services/adobe_communicator/lib/publish.py @@ -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)