From bdbc88a10ddb4ad703eb47c2849f9618667eefce Mon Sep 17 00:00:00 2001 From: Lutz Lehmann Date: Thu, 2 May 2024 21:51:53 +0200 Subject: [PATCH] fix unescaped backslash --- setup/setup_windows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/setup_windows.py b/setup/setup_windows.py index f547a3bad..ccfd957b5 100644 --- a/setup/setup_windows.py +++ b/setup/setup_windows.py @@ -248,7 +248,7 @@ def main_menu(headless: bool = False): setup_common.run_cmd("accelerate config") elif choice == "6": subprocess.Popen( - "start cmd /k .\gui.bat --inbrowser", shell=True + "start cmd /k .\\gui.bat --inbrowser", shell=True ) # /k keep the terminal open on quit. /c would close the terminal instead elif choice == "7": print("Exiting setup.")