From de693d377fedc389db59e765eff30d000254a5f7 Mon Sep 17 00:00:00 2001 From: nattoheaven Date: Thu, 16 Nov 2023 23:39:40 +0900 Subject: [PATCH] Fix the bug that it fails to load a VAE --- library/common_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/common_gui.py b/library/common_gui.py index 6d16e3285..3170c293d 100644 --- a/library/common_gui.py +++ b/library/common_gui.py @@ -886,7 +886,7 @@ def run_cmd_advanced_training(**kwargs): 'vae' ) if vae: - run_cmd += ' --vae="{vae}"' + run_cmd += f' --vae="{vae}"' return run_cmd