diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-12 12:41:30 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-12 12:41:30 +0000 |
commit | a4416f3585616f93177d85c152c5fddb583ea361 (patch) | |
tree | 42a24b538b573a8cd56520cd4c5a3200deb79d4a /scripts/prompt_matrix.py | |
parent | c205a07fbc33ab0619108f68b3a16c51e6ef1b63 (diff) | |
download | stable-diffusion-webui-gfx803-a4416f3585616f93177d85c152c5fddb583ea361.tar.gz stable-diffusion-webui-gfx803-a4416f3585616f93177d85c152c5fddb583ea361.tar.bz2 stable-diffusion-webui-gfx803-a4416f3585616f93177d85c152c5fddb583ea361.zip |
[BUG] Not Working As Intended - create a directory with name derived from the prompt #306
Diffstat (limited to 'scripts/prompt_matrix.py')
-rw-r--r-- | scripts/prompt_matrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/prompt_matrix.py b/scripts/prompt_matrix.py index 82096b0d..aaece054 100644 --- a/scripts/prompt_matrix.py +++ b/scripts/prompt_matrix.py @@ -82,6 +82,6 @@ class Script(scripts.Script): processed.images.insert(0, grid)
if opts.grid_save:
- images.save_image(processed.images[0], p.outpath_grids, "prompt_matrix", prompt=original_prompt, seed=processed.seed)
+ images.save_image(processed.images[0], p.outpath_grids, "prompt_matrix", prompt=original_prompt, seed=processed.seed, p=p)
return processed
|