diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-15 05:07:25 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-15 05:07:25 +0000 |
commit | 127635409a7959f6c057a68ccb8e70734cbaf9f3 (patch) | |
tree | 2a851b55a081501f1218c16cc1a09b9e781bca64 /modules/img2img.py | |
parent | b8bd8ce4cf687e9e02000387adf4d751b22a4a36 (diff) | |
download | stable-diffusion-webui-gfx803-127635409a7959f6c057a68ccb8e70734cbaf9f3.tar.gz stable-diffusion-webui-gfx803-127635409a7959f6c057a68ccb8e70734cbaf9f3.tar.bz2 stable-diffusion-webui-gfx803-127635409a7959f6c057a68ccb8e70734cbaf9f3.zip |
add padding and identification to generation log section (Failed to find Loras, Used embeddings, etc...)
Diffstat (limited to 'modules/img2img.py')
-rw-r--r-- | modules/img2img.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/img2img.py b/modules/img2img.py index 664e2688..a811e7a4 100644 --- a/modules/img2img.py +++ b/modules/img2img.py @@ -240,4 +240,4 @@ def img2img(id_task: str, mode: int, prompt: str, negative_prompt: str, prompt_s if opts.do_not_show_images:
processed.images = []
- return processed.images, generation_info_js, plaintext_to_html(processed.info), plaintext_to_html(processed.comments)
+ return processed.images, generation_info_js, plaintext_to_html(processed.info), plaintext_to_html(processed.comments, classname="comments")
|