mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
renamed get_pype_execute_args to get_openpype_execute_args
This commit is contained in:
parent
3685ad9ed5
commit
613e9ff2fb
2 changed files with 7 additions and 0 deletions
|
|
@ -24,6 +24,7 @@ from .env_tools import (
|
|||
|
||||
from .terminal import Terminal
|
||||
from .execute import (
|
||||
get_openpype_execute_args,
|
||||
get_pype_execute_args,
|
||||
get_linux_launcher_args,
|
||||
execute,
|
||||
|
|
@ -173,6 +174,7 @@ from .pype_info import (
|
|||
terminal = Terminal
|
||||
|
||||
__all__ = [
|
||||
"get_openpype_execute_args",
|
||||
"get_pype_execute_args",
|
||||
"get_linux_launcher_args",
|
||||
"execute",
|
||||
|
|
|
|||
|
|
@ -147,6 +147,11 @@ def path_to_subprocess_arg(path):
|
|||
|
||||
|
||||
def get_pype_execute_args(*args):
|
||||
"""Backwards compatible function for 'get_openpype_execute_args'."""
|
||||
return get_openpype_execute_args(*args)
|
||||
|
||||
|
||||
def get_openpype_execute_args(*args):
|
||||
"""Arguments to run pype command.
|
||||
|
||||
Arguments for subprocess when need to spawn new pype process. Which may be
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue