diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-12-24 06:58:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 06:58:28 +0000 |
commit | fac92610d22d1166890b17b167c034090a096e5a (patch) | |
tree | 059e9c4d3314278472b8f4e1b0a14b59952d7973 /modules/images.py | |
parent | 94450b88775ee14392d05ef6a8fc915b93946b9e (diff) | |
parent | c0355caefe3d82e304e6d832699d581fc8f9fbf9 (diff) | |
download | stable-diffusion-webui-gfx803-fac92610d22d1166890b17b167c034090a096e5a.tar.gz stable-diffusion-webui-gfx803-fac92610d22d1166890b17b167c034090a096e5a.tar.bz2 stable-diffusion-webui-gfx803-fac92610d22d1166890b17b167c034090a096e5a.zip |
Merge pull request #5753 from calvinballing/master
Fix various typos
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 8bcbc8d9..809ad9f7 100644 --- a/modules/images.py +++ b/modules/images.py @@ -438,7 +438,7 @@ def save_image(image, path, basename, seed=None, prompt=None, extension='png', i The directory to save the image. Note, the option `save_to_dirs` will make the image to be saved into a sub directory.
basename (`str`):
The base filename which will be applied to `filename pattern`.
- seed, prompt, short_filename,
+ seed, prompt, short_filename,
extension (`str`):
Image file extension, default is `png`.
pngsectionname (`str`):
@@ -599,7 +599,7 @@ def read_info_from_image(image): Negative prompt: {json_info["uc"]}
Steps: {json_info["steps"]}, Sampler: {sampler}, CFG scale: {json_info["scale"]}, Seed: {json_info["seed"]}, Size: {image.width}x{image.height}, Clip skip: 2, ENSD: 31337"""
except Exception:
- print(f"Error parsing NovelAI iamge generation parameters:", file=sys.stderr)
+ print(f"Error parsing NovelAI image generation parameters:", file=sys.stderr)
print(traceback.format_exc(), file=sys.stderr)
return geninfo, items
|