From 26c0cf03cac75237e5370b1d258137700138ec08 Mon Sep 17 00:00:00 2001 From: Pakobbix Date: Mon, 15 May 2023 17:06:43 +0200 Subject: [PATCH] Stupid me, forgot to uncomment run_cmd again. --- StartUI.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/StartUI.py b/StartUI.py index 64c8e12..8e3dfa4 100644 --- a/StartUI.py +++ b/StartUI.py @@ -860,11 +860,11 @@ class MainWindow(QMainWindow): command += f" --extensions {' '.join(extensions)}" # Just for debugging. - print(f"Command generated: python webuiGUI.py {command}") + #print(f"Command generated: python webuiGUI.py {command}") # Based on the Model that's chosen, we will take care of some necessary stuff. # Starts the webui in the conda env with the user given Options - #run_cmd_with_conda(f"python webuiGUI.py {command}") + run_cmd_with_conda(f"python webuiGUI.py {command}") if self.use_autoclose_checkbox.isChecked(): sys.exit()