Skip to content

Commit

Permalink
fix unescaped backslash (#2436)
Browse files Browse the repository at this point in the history
  • Loading branch information
DukeSniper committed May 3, 2024
1 parent da59ac1 commit adc3335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup/setup_windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
Expand Down

0 comments on commit adc3335

Please sign in to comment.