diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2022-10-22 13:32:26 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-24 07:28:42 +0000 |
commit | 8f6af4ed651cdb4456e2f3474d05dd3a18086ac2 (patch) | |
tree | e1d53eb92a42fdd09e38da409f8ed5be0d5bdfcb /modules/images.py | |
parent | 00952fb4a8b86b75402cc8276e00f3daadf1f459 (diff) | |
download | stable-diffusion-webui-gfx803-8f6af4ed651cdb4456e2f3474d05dd3a18086ac2.tar.gz stable-diffusion-webui-gfx803-8f6af4ed651cdb4456e2f3474d05dd3a18086ac2.tar.bz2 stable-diffusion-webui-gfx803-8f6af4ed651cdb4456e2f3474d05dd3a18086ac2.zip |
remove lowercasing file_decoration as it is not needed anymore
Diffstat (limited to 'modules/images.py')
-rw-r--r-- | modules/images.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/images.py b/modules/images.py index 898b065b..321439e3 100644 --- a/modules/images.py +++ b/modules/images.py @@ -467,7 +467,7 @@ def save_image(image, path, basename, seed=None, prompt=None, extension='png', i file_decoration = opts.samples_filename_pattern or "[seed]-[prompt_spaces]"
if file_decoration != "":
- file_decoration = "-" + file_decoration.lower()
+ file_decoration = "-" + file_decoration
file_decoration = apply_filename_pattern(file_decoration, p, seed, prompt) + suffix
|