From ae3efbc56cfd3fce6bbc07acdcb4ee526c78bfe0 Mon Sep 17 00:00:00 2001 From: Petr Kalis Date: Fri, 25 Apr 2025 15:43:25 +0200 Subject: [PATCH] Update executable name Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> --- client/ayon_core/lib/ayon_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_core/lib/ayon_info.py b/client/ayon_core/lib/ayon_info.py index 7928c473d7..2c5cf5c8e6 100644 --- a/client/ayon_core/lib/ayon_info.py +++ b/client/ayon_core/lib/ayon_info.py @@ -77,7 +77,7 @@ def is_using_ayon_console(): executable_filename = os.path.basename(executable_path) return ( "ayon_console" in executable_filename - or "python.exe" in executable_filename + or "python" in executable_filename )