diff --git a/CHANGELOG.md b/CHANGELOG.md index ece6a095a..e702c246c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,8 @@ Service release addressing all zero-day issues reported so far... - fix model path using relative path - fix `torch-rocm` and `tensorflow-rocm` version detection, thanks @xangelix - fix chainner upscalers color clipping +- fix for base+refiner workflow in diffusers mode: number of steps, diffuser pipe mode +- fix for prompt encoder with refiner in diffusers mode - force second requirements check on startup - remove lyco, multiple_tqdm - enhance extension compatibility for exensions directly importing codeformers diff --git a/extensions-builtin/Lora/networks.py b/extensions-builtin/Lora/networks.py index 10addb806..40aeaaabd 100644 --- a/extensions-builtin/Lora/networks.py +++ b/extensions-builtin/Lora/networks.py @@ -379,7 +379,7 @@ def list_available_networks(): if os.path.exists(shared.cmd_opts.lora_dir): candidates += list(shared.walk_files(shared.cmd_opts.lora_dir, allowed_extensions=[".pt", ".ckpt", ".safetensors"])) else: - shared.log.warning('LoRA directory not found: path={shared.cmd_opts.lora_dir}') + shared.log.warning('LoRA directory not found: path="{shared.cmd_opts.lora_dir}"') if os.path.exists(shared.cmd_opts.lyco_dir): candidates += list(shared.walk_files(shared.cmd_opts.lyco_dir, allowed_extensions=[".pt", ".ckpt", ".safetensors"])) for filename in candidates: