diff options
author | DepFA <35278260+dfaker@users.noreply.github.com> | 2022-10-06 14:22:51 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-06 15:09:49 +0000 |
commit | 82eb8ea452b1e63535c58d15ec6db2ad2342faa8 (patch) | |
tree | 2a2162eb8281da104656042b8a6f3051132a691f /scripts | |
parent | fd9e0491681c027bd62267fef4b632d12af7af3b (diff) | |
download | stable-diffusion-webui-gfx803-82eb8ea452b1e63535c58d15ec6db2ad2342faa8.tar.gz stable-diffusion-webui-gfx803-82eb8ea452b1e63535c58d15ec6db2ad2342faa8.tar.bz2 stable-diffusion-webui-gfx803-82eb8ea452b1e63535c58d15ec6db2ad2342faa8.zip |
Update xy_grid.py
split vals not 's' from tests
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/xy_grid.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/xy_grid.py b/scripts/xy_grid.py index ec27e58b..210c7b6e 100644 --- a/scripts/xy_grid.py +++ b/scripts/xy_grid.py @@ -197,7 +197,7 @@ class Script(scripts.Script): if opt.label == 'Nothing':
return [0]
- valslist = list(map(str.strip,chain.from_iterable(csv.reader(StringIO(s)))))
+ valslist = list(map(str.strip,chain.from_iterable(csv.reader(StringIO(vals)))))
if opt.type == int:
valslist_ext = []
|