From ab1a1de7a44dcd2463ae22b41e7b182d4186e3f5 Mon Sep 17 00:00:00 2001 From: doctorpangloss <@hiddenswitch.com> Date: Thu, 26 Sep 2024 13:26:52 -0700 Subject: [PATCH] Fix missing arg to add_model_folder_path --- comfy/extra_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/extra_config.py b/comfy/extra_config.py index fe6a664f9..a3e525e2f 100644 --- a/comfy/extra_config.py +++ b/comfy/extra_config.py @@ -28,4 +28,4 @@ def load_extra_path_config(yaml_path): if base_path is not None: full_path = os.path.join(base_path, full_path) logging.info("Adding extra search path {} {}".format(x, full_path)) - folder_paths.add_model_folder_path(x, full_path, is_default) + folder_paths.add_model_folder_path(x, full_path, is_default=is_default)