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/txt2img.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/txt2img.py')
-rw-r--r-- | modules/txt2img.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/txt2img.py b/modules/txt2img.py index d0be2e73..29d94e8c 100644 --- a/modules/txt2img.py +++ b/modules/txt2img.py @@ -70,4 +70,4 @@ def txt2img(id_task: str, prompt: str, negative_prompt: str, prompt_styles, step 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")
|