From 92bf1cb61efcab45961d1119cb7ec7a076caf24e Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Sat, 13 May 2023 13:05:52 -0400 Subject: [PATCH] Change message. --- nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.py b/nodes.py index 956b739d..28215127 100644 --- a/nodes.py +++ b/nodes.py @@ -1341,7 +1341,7 @@ def load_custom_nodes(): slow_nodes = list(filter(lambda a: a[0] > 1.0, node_import_times)) if len(slow_nodes) > 0: - print("\nDetected some custom nodes that were slow to import:") + print("\nImport times for custom nodes:") for n in sorted(slow_nodes): print("{:6.1f} seconds to import:".format(n[0]), n[1]) print()