fix unescaped backslash (#2436)

pull/2444/head
DukeSniper 2024-05-03 15:18:35 +02:00 committed by GitHub
parent da59ac1019
commit adc33352a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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.")