We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1b2ea6 commit b96d0c4Copy full SHA for b96d0c4
modules/sd_vae.py
@@ -27,8 +27,8 @@ def refresh_vae_list(vae_path=vae_path, model_path=model_path):
27
candidates = [
28
*glob.iglob(os.path.join(model_path, '**/*.vae.ckpt'), recursive=True),
29
*glob.iglob(os.path.join(model_path, '**/*.vae.pt'), recursive=True),
30
- *glob.iglob(os.path.join(vae_path, '**/*.ckpt'), recursive=True)
31
- *glob.iglob(os.path.join(vae_path, '**/*.pt'), recursive=True),
+ *glob.iglob(os.path.join(vae_path, '**/*.ckpt'), recursive=True),
+ *glob.iglob(os.path.join(vae_path, '**/*.pt'), recursive=True)
32
]
33
if shared.cmd_opts.vae_path is not None and os.path.isfile(shared.cmd_opts.vae_path):
34
candidates.append(shared.cmd_opts.vae_path)
0 commit comments