From b9698a8f2a8145dda877b3a1cf357fe239b451d9 Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Thu, 6 Jun 2024 18:58:56 +0200 Subject: [PATCH] fix used sys path --- client/ayon_core/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_core/cli.py b/client/ayon_core/cli.py index bd47dc1aac..60cf5624b0 100644 --- a/client/ayon_core/cli.py +++ b/client/ayon_core/cli.py @@ -268,7 +268,7 @@ def main(*args, **kwargs): os.path.join(AYON_CORE_ROOT, "tools"), # add common AYON vendor # (common for multiple Python interpreter versions) - os.path.join(AYON_CORE_ROOT, "vendor", "python", "common") + os.path.join(AYON_CORE_ROOT, "vendor", "python") ] for path in additional_paths: if path not in split_paths: