From 7cf52dd51efe7e93d6b48ac5f97f01d675b17ef9 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Wed, 26 Nov 2025 16:32:23 -0800 Subject: [PATCH] Make manager warning for --enable-manager not appear if is windows_standalone_build --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 240c1255f..0cd815d9e 100644 --- a/main.py +++ b/main.py @@ -25,7 +25,8 @@ setup_logger(log_level=args.verbose, use_stdout=args.log_stdout) def handle_comfyui_manager_unavailable(): - logging.warning(f"\n\nYou appear to be running comfyui-manager from source, this is not recommended. Please install comfyui-manager using the following command:\ncommand:\n\t{sys.executable} -m pip install --pre comfyui_manager\n") + if not args.windows_standalone_build: + logging.warning(f"\n\nYou appear to be running comfyui-manager from source, this is not recommended. Please install comfyui-manager using the following command:\ncommand:\n\t{sys.executable} -m pip install --pre comfyui_manager\n") args.enable_manager = False