diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-04-29 14:02:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 14:02:24 +0000 |
commit | c89cad2b9ac1ed1ec378a559ce5adda82fadc38b (patch) | |
tree | c17a740c559e6dfc7d86dcfad07675522d315037 | |
parent | 17cce456133bf22c83cb379c0179e8b0daaa21e4 (diff) | |
parent | 3894609b52cb21d8974387bf6bb4b734e3296b4a (diff) | |
download | stable-diffusion-webui-gfx803-c89cad2b9ac1ed1ec378a559ce5adda82fadc38b.tar.gz stable-diffusion-webui-gfx803-c89cad2b9ac1ed1ec378a559ce5adda82fadc38b.tar.bz2 stable-diffusion-webui-gfx803-c89cad2b9ac1ed1ec378a559ce5adda82fadc38b.zip |
Merge pull request #9314 from Pluventi/master
Fix "Bug batch process" on extras tab , even with a clean install of "stable diffusion webui"
-rw-r--r-- | modules/postprocessing.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/postprocessing.py b/modules/postprocessing.py index 4dc1a2ab..736315e2 100644 --- a/modules/postprocessing.py +++ b/modules/postprocessing.py @@ -24,7 +24,6 @@ def run_postprocessing(extras_mode, image, image_folder, input_dir, output_dir, else:
image = Image.open(os.path.abspath(img.name))
fn = os.path.splitext(img.orig_name)[0]
-
image_data.append(image)
image_names.append(fn)
elif extras_mode == 2:
|