From 35e2dcf5d710f258f40f107f70f24a4cd58ba223 Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Mon, 10 Mar 2025 06:14:43 -0400 Subject: [PATCH] Hack to fix broken manager. --- nodes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nodes.py b/nodes.py index 43697a24d..4608a0d36 100644 --- a/nodes.py +++ b/nodes.py @@ -2134,6 +2134,8 @@ def load_custom_node(module_path: str, ignore=set(), module_parent="custom_nodes module_name = sp[0] elif os.path.isdir(module_path): module_name = module_path + if module_path.endswith("comfyui-manager"): #TODO: remove this eventually + module_name = get_module_name(module_path) try: logging.debug("Trying to load custom node {}".format(module_path))