aboutsummaryrefslogtreecommitdiff
path: root/modules/images.py
diff options
context:
space:
mode:
authorw-e-w <40751091+w-e-w@users.noreply.github.com>2022-10-22 22:32:26 +0900
committerAUTOMATIC1111 <16777216c@gmail.com>2022-10-24 10:28:42 +0300
commit8f6af4ed651cdb4456e2f3474d05dd3a18086ac2 (patch)
treee1d53eb92a42fdd09e38da409f8ed5be0d5bdfcb /modules/images.py
parent00952fb4a8b86b75402cc8276e00f3daadf1f459 (diff)
remove lowercasing file_decoration as it is not needed anymore
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 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