From e98b52bf533ade48885c72338f7feef714e6d669 Mon Sep 17 00:00:00 2001 From: "Alex \"mcmonkey\" Goodwin" Date: Thu, 19 Sep 2024 02:31:48 +0900 Subject: [PATCH] other fix --- folder_paths.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/folder_paths.py b/folder_paths.py index 6abc573d3..05b054941 100644 --- a/folder_paths.py +++ b/folder_paths.py @@ -213,11 +213,11 @@ def recursive_search(directory: str, excluded_dir_names: list[str] | None=None) relative_path = os.path.relpath(file, directory) result.append(relative_path) return + calls.append(proc_subdir(file)) for subdir in await aiofiles.os.listdir(file): path = os.path.join(file, subdir) if subdir not in excluded_dir_names: calls.append(handle(path)) - calls.append(proc_subdir(path)) calls.append(handle(directory)) while len(calls) > 0: