aboutsummaryrefslogtreecommitdiffstats
path: root/modules/images.py
diff options
context:
space:
mode:
authorRnDMonkey <ryandrutledge@gmail.com>2022-10-02 04:11:03 +0000
committerRnDMonkey <ryandrutledge@gmail.com>2022-10-02 04:11:03 +0000
commit3cf1a96006daffedb8ecd0ae142eca4c4da06105 (patch)
tree9035b83d796f322719bf0f69035d36e6b7c7aa08 /modules/images.py
parent3f417566b0bda8eab05d247567aebf001c1d1725 (diff)
downloadstable-diffusion-webui-gfx803-3cf1a96006daffedb8ecd0ae142eca4c4da06105.tar.gz
stable-diffusion-webui-gfx803-3cf1a96006daffedb8ecd0ae142eca4c4da06105.tar.bz2
stable-diffusion-webui-gfx803-3cf1a96006daffedb8ecd0ae142eca4c4da06105.zip
added safety for blank directory naming patterns
Diffstat (limited to 'modules/images.py')
-rw-r--r--modules/images.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/images.py b/modules/images.py
index f1aed5d6..e7894b4c 100644
--- a/modules/images.py
+++ b/modules/images.py
@@ -311,7 +311,7 @@ def apply_filename_pattern(x, p, seed, prompt):
x = x.replace("[cfg]", str(p.cfg_scale))
x = x.replace("[width]", str(p.width))
x = x.replace("[height]", str(p.height))
- 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 "No styles", replace_spaces=False))
x = x.replace("[sampler]", sanitize_filename_part(sd_samplers.samplers[p.sampler_index].name, replace_spaces=False))
x = x.replace("[model_hash]", shared.sd_model.sd_model_hash)
@@ -374,7 +374,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)