diff options
-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
|