diff options
author | EllangoK <karun.ellango7@gmail.com> | 2023-01-27 19:04:23 +0000 |
---|---|---|
committer | EllangoK <karun.ellango7@gmail.com> | 2023-01-27 19:04:23 +0000 |
commit | 32d389ef0f7c75dd85fc7aebe7bca279f36fed86 (patch) | |
tree | b3e595e796071bc9defda95f924e54f23ffcbb34 /scripts/xyz_grid.py | |
parent | a6a5bfb15531b19ce0319593d67d05a356f49a65 (diff) | |
download | stable-diffusion-webui-gfx803-32d389ef0f7c75dd85fc7aebe7bca279f36fed86.tar.gz stable-diffusion-webui-gfx803-32d389ef0f7c75dd85fc7aebe7bca279f36fed86.tar.bz2 stable-diffusion-webui-gfx803-32d389ef0f7c75dd85fc7aebe7bca279f36fed86.zip |
changes remaining text from X/Y -> X/Y/Z
Diffstat (limited to 'scripts/xyz_grid.py')
-rw-r--r-- | scripts/xyz_grid.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/xyz_grid.py b/scripts/xyz_grid.py index f2fe506c..f0116055 100644 --- a/scripts/xyz_grid.py +++ b/scripts/xyz_grid.py @@ -499,7 +499,7 @@ class Script(scripts.Script): image_cell_count = p.n_iter * p.batch_size
cell_console_text = f"; {image_cell_count} images per cell" if image_cell_count > 1 else ""
plural_s = 's' if len(zs) > 1 else ''
- print(f"X/Y plot will create {len(xs) * len(ys) * len(zs) * image_cell_count} images on {len(zs)} {len(xs)}x{len(ys)} grid{plural_s}{cell_console_text}. (Total steps to process: {total_steps})")
+ print(f"X/Y/Z plot will create {len(xs) * len(ys) * len(zs) * image_cell_count} images on {len(zs)} {len(xs)}x{len(ys)} grid{plural_s}{cell_console_text}. (Total steps to process: {total_steps})")
shared.total_tqdm.updateTotal(total_steps)
grid_infotext = [None]
|