diff options
author | innovaciones <sonygarcia99@gmail.com> | 2022-09-22 20:38:12 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-23 05:33:08 +0000 |
commit | 0ce9e05a425f9bd28d995842cd7eab3597c160a5 (patch) | |
tree | b11d4161ea2ef91397c9b171ca250758368daef4 /modules/ui.py | |
parent | 6e86fc9fd0d8bf9d60b0ed7301aee19554f5198a (diff) | |
download | stable-diffusion-webui-gfx803-0ce9e05a425f9bd28d995842cd7eab3597c160a5.tar.gz stable-diffusion-webui-gfx803-0ce9e05a425f9bd28d995842cd7eab3597c160a5.tar.bz2 stable-diffusion-webui-gfx803-0ce9e05a425f9bd28d995842cd7eab3597c160a5.zip |
Fix typo
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index 34c0a5e1..0292b321 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -200,7 +200,7 @@ def check_progress_call(): else:
preview_visibility = gr_show(True)
- return f"<span id'progressSpan' style='display: none'>{time.time()}</span><p>{progressbar}</p>", preview_visibility, image
+ return f"<span id='progressSpan' style='display: none'>{time.time()}</span><p>{progressbar}</p>", preview_visibility, image
def check_progress_call_initial():
|