diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-09-09 07:02:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-09 07:02:02 +0000 |
commit | 558808c748d118f5d417a0d3810c0b7e9dcf8626 (patch) | |
tree | 2ce7be011290bb129f2592415971bfc07f6705da /modules/img2img.py | |
parent | 46375f059276cb2d4d1e47bf65f984c6466dc2a0 (diff) | |
parent | c68aabc852151633016d3d5c84b433041f09d96e (diff) | |
download | stable-diffusion-webui-gfx803-558808c748d118f5d417a0d3810c0b7e9dcf8626.tar.gz stable-diffusion-webui-gfx803-558808c748d118f5d417a0d3810c0b7e9dcf8626.tar.bz2 stable-diffusion-webui-gfx803-558808c748d118f5d417a0d3810c0b7e9dcf8626.zip |
Merge pull request #13119 from AUTOMATIC1111/enable_console_prompts-in-settings
enable console prompts in settings
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 c1cae22f..7ca10cf0 100644 --- a/modules/img2img.py +++ b/modules/img2img.py @@ -201,7 +201,7 @@ def img2img(id_task: str, mode: int, prompt: str, negative_prompt: str, prompt_s p.user = request.username
- if shared.cmd_opts.enable_console_prompts:
+ if shared.opts.enable_console_prompts:
print(f"\nimg2img: {prompt}", file=shared.progress_print_out)
if mask:
|