mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Fix proper escaping for executable - AfterEffects
This commit is contained in:
parent
18d6bba664
commit
dd6e1c3c43
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ class AfterEffectsPrelaunchHook(PreLaunchHook):
|
|||
(
|
||||
"import avalon.aftereffects;"
|
||||
"avalon.aftereffects.launch(\"{}\")"
|
||||
).format(aftereffects_executable)
|
||||
).format(aftereffects_executable.replace("\\", "\\\\"))
|
||||
]
|
||||
|
||||
# Append as whole list as these areguments should not be separated
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue