From 721f8510af18019c87f01c734210fb0178e7a977 Mon Sep 17 00:00:00 2001 From: Hacker 17082006 Date: Mon, 13 Feb 2023 18:24:54 +0700 Subject: [PATCH] Change the words a bit --- nodes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodes.py b/nodes.py index bb0392c0..33a038ab 100644 --- a/nodes.py +++ b/nodes.py @@ -607,9 +607,9 @@ def load_custom_nodes(): if getattr(custom_nodes, "NODE_CLASS_MAPPINGS") is not None: NODE_CLASS_MAPPINGS.update(custom_nodes.NODE_CLASS_MAPPINGS) else: - print(f"Skip {possible_module} node due to the lack of NODE_CLASS_MAPPINGS.") + print(f"Skip {possible_module} module for custom nodes due to the lack of NODE_CLASS_MAPPINGS.") except ImportError as e: - print(f"Cannot import {possible_module} node.") + print(f"Cannot import {possible_module} module for custom nodes.") print(e) load_custom_nodes() \ No newline at end of file