diff options
author | RnDMonkey <ryandrutledge@gmail.com> | 2022-10-02 04:18:15 +0000 |
---|---|---|
committer | RnDMonkey <ryandrutledge@gmail.com> | 2022-10-02 04:18:15 +0000 |
commit | 70f526704721a303ae045f6406439dcceee4302e (patch) | |
tree | 6d9665b412113de3a5dfd39b62f04b83582562e7 /modules/images.py | |
parent | 3cf1a96006daffedb8ecd0ae142eca4c4da06105 (diff) | |
download | stable-diffusion-webui-gfx803-70f526704721a303ae045f6406439dcceee4302e.tar.gz stable-diffusion-webui-gfx803-70f526704721a303ae045f6406439dcceee4302e.tar.bz2 stable-diffusion-webui-gfx803-70f526704721a303ae045f6406439dcceee4302e.zip |
use os.path.normpath for better safety checking
Diffstat (limited to 'modules/images.py')
-rw-r--r-- | modules/images.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/images.py b/modules/images.py index e7894b4c..5ef7eb92 100644 --- a/modules/images.py +++ b/modules/images.py @@ -374,8 +374,8 @@ 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).strip('\\ ')
- path = os.path.join(path, dirname)
+ dirname = apply_filename_pattern(opts.directories_filename_pattern or "[prompt_words]", p, seed, prompt)
+ path = os.path.normpath(os.path.join(path, dirname))
os.makedirs(path, exist_ok=True)
|