From b67b6920d1a313191f1dd3b82f016b66acff6afd Mon Sep 17 00:00:00 2001 From: Hacker 17082006 Date: Wed, 15 Feb 2023 21:15:54 +0700 Subject: [PATCH] Fix bug --- nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.py b/nodes.py index 5d78c52a..cc3960aa 100644 --- a/nodes.py +++ b/nodes.py @@ -610,7 +610,7 @@ def load_custom_nodes(): module_path = os.path.join(CUSTOM_NODE_PATH, possible_module) if os.path.isfile(module_path) and os.path.splitext(module_path)[1] != ".py": continue try: - custom_nodes = import_module(possible_module, CUSTOM_NODE_PATH) + custom_nodes = import_module(os.path.join(possible_module, CUSTOM_NODE_PATH)) if getattr(custom_nodes, "NODE_CLASS_MAPPINGS") is not None: NODE_CLASS_MAPPINGS.update(custom_nodes.NODE_CLASS_MAPPINGS) else: