diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-11 20:25:35 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-11 20:25:35 +0000 |
commit | 81d91cea29b8246ad0151fa89e37d6ef719b8b51 (patch) | |
tree | 58a1e16c73bc68245f895fbe42eb10cfb5c0cda1 /modules/processing.py | |
parent | 8fb9c57ed62dcef721d50c1eeb9c20f65c509215 (diff) | |
parent | 4535239d8a2541171efe0af4bc55476e119f205e (diff) | |
download | stable-diffusion-webui-gfx803-81d91cea29b8246ad0151fa89e37d6ef719b8b51.tar.gz stable-diffusion-webui-gfx803-81d91cea29b8246ad0151fa89e37d6ef719b8b51.tar.bz2 stable-diffusion-webui-gfx803-81d91cea29b8246ad0151fa89e37d6ef719b8b51.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index b1e8dad2..7dc2b9af 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -275,7 +275,7 @@ def process_images(p: StableDiffusionProcessing) -> Processed: image = image.convert('RGB')
if opts.samples_save and not p.do_not_save_samples:
- images.save_image(image, p.outpath_samples, "", seeds[i], prompts[i], opts.samples_format, info=infotext(n, i))
+ images.save_image(image, p.outpath_samples, "", seeds[i], prompts[i], opts.samples_format, info=infotext(n, i), process_info = Processed(p, output_images, all_seeds[0], infotext()))
output_images.append(image)
|