Skip to content

Commit b96d0c4

Browse files
committed
Fix typo from previous commit
1 parent e1b2ea6 commit b96d0c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/sd_vae.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ def refresh_vae_list(vae_path=vae_path, model_path=model_path):
2727
candidates = [
2828
*glob.iglob(os.path.join(model_path, '**/*.vae.ckpt'), recursive=True),
2929
*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),
30+
*glob.iglob(os.path.join(vae_path, '**/*.ckpt'), recursive=True),
31+
*glob.iglob(os.path.join(vae_path, '**/*.pt'), recursive=True)
3232
]
3333
if shared.cmd_opts.vae_path is not None and os.path.isfile(shared.cmd_opts.vae_path):
3434
candidates.append(shared.cmd_opts.vae_path)

0 commit comments

Comments
 (0)