Skip to content

Commit 7cf52dd

Browse files
committed
Make manager warning for --enable-manager not appear if is windows_standalone_build
1 parent 4061eaa commit 7cf52dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525

2626

2727
def handle_comfyui_manager_unavailable():
28-
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")
28+
if not args.windows_standalone_build:
29+
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")
2930
args.enable_manager = False
3031

3132

0 commit comments

Comments
 (0)