diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-03 04:58:06 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-03 04:58:06 +0000 |
commit | 2cd6a00f3757e3ba9528c1a54341c61b4ab45a7c (patch) | |
tree | 8b6bcd0283645d6d00ed9d58a30d4d0976f10cc5 /modules/images.py | |
parent | 138662734c25dab4e73e632b7eaff9ad9c0ce2b4 (diff) | |
parent | b2338ea48e59b0d40cc40ec39108b9490f1c75de (diff) | |
download | stable-diffusion-webui-gfx803-2cd6a00f3757e3ba9528c1a54341c61b4ab45a7c.tar.gz stable-diffusion-webui-gfx803-2cd6a00f3757e3ba9528c1a54341c61b4ab45a7c.tar.bz2 stable-diffusion-webui-gfx803-2cd6a00f3757e3ba9528c1a54341c61b4ab45a7c.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'modules/images.py')
-rw-r--r-- | modules/images.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/images.py b/modules/images.py index d7563244..bba55158 100644 --- a/modules/images.py +++ b/modules/images.py @@ -315,7 +315,7 @@ def apply_filename_pattern(x, p, seed, prompt): #currently disabled if using the save button, will work otherwise
# if enabled it will cause a bug because styles is not included in the save_files data dictionary
if hasattr(p, "styles"):
- x = x.replace("[styles]", sanitize_filename_part(", ".join([x for x in p.styles if not x == "None"]), replace_spaces=False))
+ x = x.replace("[styles]", sanitize_filename_part(", ".join([x for x in p.styles if not x == "None"] or "None"), replace_spaces=False))
x = x.replace("[sampler]", sanitize_filename_part(sd_samplers.samplers[p.sampler_index].name, replace_spaces=False))
@@ -379,7 +379,7 @@ def save_image(image, path, basename, seed=None, prompt=None, extension='png', i save_to_dirs = (grid and opts.grid_save_to_dirs) or (not grid and opts.save_to_dirs and not no_prompt)
if save_to_dirs:
- dirname = apply_filename_pattern(opts.directories_filename_pattern or "[prompt_words]", p, seed, prompt)
+ dirname = apply_filename_pattern(opts.directories_filename_pattern or "[prompt_words]", p, seed, prompt).strip('\\ /')
path = os.path.join(path, dirname)
os.makedirs(path, exist_ok=True)
|