point hooks to openpype

This commit is contained in:
Milan Kolar 2021-04-01 21:46:57 +02:00
parent 7b41968ab0
commit 5e89c1be22
2 changed files with 5 additions and 5 deletions

View file

@ -5,7 +5,7 @@ from openpype.lib import (
get_pype_execute_args
)
from openpype import PACKAGE_DIR as PYPE_DIR
from openpype import PACKAGE_DIR as OPENPYPE_DIR
class NonPythonHostHook(PreLaunchHook):
@ -13,7 +13,7 @@ class NonPythonHostHook(PreLaunchHook):
Non python host implementation do not launch host directly but use
python script which launch the host. For these cases it is necessary to
prepend python (or pype) executable and script path before application's.
prepend python (or openpype) executable and script path before application's.
"""
app_groups = ["harmony", "photoshop", "aftereffects"]
@ -27,7 +27,7 @@ class NonPythonHostHook(PreLaunchHook):
remainders.append(self.launch_context.launch_args.pop(0))
script_path = os.path.join(
PYPE_DIR,
OPENPYPE_DIR,
"scripts",
"non_python_host_launch.py"
)

View file

@ -4,7 +4,7 @@ from openpype.lib import PreLaunchHook
class PrePython2Vendor(PreLaunchHook):
"""Prepend python 2 dependencies for py2 hosts."""
# WARNING This hook will probably be deprecated in Pype 3 - kept for test
# WARNING This hook will probably be deprecated in OpenPype 3 - kept for test
order = 10
app_groups = ["hiero", "nuke", "nukex"]
@ -14,7 +14,7 @@ class PrePython2Vendor(PreLaunchHook):
pype_root = os.getenv("OPENPYPE_ROOT")
python_2_vendor = os.path.join(
pype_root,
"pype",
"openpype",
"vendor",
"python",
"python_2"