fix: folder handling issues

This commit is contained in:
Enrico Fasoli
2023-11-23 22:24:58 +01:00
parent 4d2437e681
commit 1964bf1e78
2 changed files with 5 additions and 2 deletions

View File

@@ -1808,7 +1808,7 @@ def load_custom_nodes():
node_paths = folder_paths.get_folder_paths("custom_nodes")
node_import_times = []
for custom_node_path in node_paths:
possible_modules = os.listdir(custom_node_path)
possible_modules = os.listdir(os.path.realpath(custom_node_path))
if "__pycache__" in possible_modules:
possible_modules.remove("__pycache__")