aboutsummaryrefslogtreecommitdiffstats
path: root/modules/images.py
diff options
context:
space:
mode:
authorRnDMonkey <ryandrutledge@gmail.com>2022-10-03 05:21:16 +0000
committerRnDMonkey <ryandrutledge@gmail.com>2022-10-03 05:21:16 +0000
commit36ea4ac0f5844e5c8dec124edbdb714ccdd6013c (patch)
treeab7e94622c1cc7b3acfd41dd83f8dd22f5f3149e /modules/images.py
parente615d4f9d101e2712c7c2d0e3e8feb19cb430c74 (diff)
downloadstable-diffusion-webui-gfx803-36ea4ac0f5844e5c8dec124edbdb714ccdd6013c.tar.gz
stable-diffusion-webui-gfx803-36ea4ac0f5844e5c8dec124edbdb714ccdd6013c.tar.bz2
stable-diffusion-webui-gfx803-36ea4ac0f5844e5c8dec124edbdb714ccdd6013c.zip
moved no-style return outside join function
Diffstat (limited to 'modules/images.py')
-rw-r--r--modules/images.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/images.py b/modules/images.py
index bba55158..1a046aca 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"] or "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))