diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-05-18 13:36:30 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-05-18 13:36:30 +0000 |
commit | 44c37f94e176667ccdfeb74916e4640fa9dc586d (patch) | |
tree | 834dc2729f57a7a0b4b99926101294c94b0fb51e /modules/processing.py | |
parent | cd8a510ca9074c63e7fb8f74dcb404a742381ae5 (diff) | |
download | stable-diffusion-webui-gfx803-44c37f94e176667ccdfeb74916e4640fa9dc586d.tar.gz stable-diffusion-webui-gfx803-44c37f94e176667ccdfeb74916e4640fa9dc586d.tar.bz2 stable-diffusion-webui-gfx803-44c37f94e176667ccdfeb74916e4640fa9dc586d.zip |
add messages about Loras that failed to load to UI
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 2b8dd361..7ee6da28 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -808,7 +808,7 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed: images_list=output_images,
seed=p.all_seeds[0],
info=infotext(),
- comments="".join(f"\n\n{comment}" for comment in comments),
+ comments="".join(f"{comment}\n" for comment in comments),
subseed=p.all_subseeds[0],
index_of_first_image=index_of_first_image,
infotexts=infotexts,
|