You need to sign in or sign up before continuing.
Commit 9a4e6508 authored by Pluventi's avatar Pluventi

Update postprocessing.py

Solution for anyone getting an error when batching on extras, even with a clean install of "stable diffusion webui"
parent 22bcc7be
......@@ -18,7 +18,7 @@ def run_postprocessing(extras_mode, image, image_folder, input_dir, output_dir,
if extras_mode == 1:
for img in image_folder:
image = Image.open(img)
image = Image.open(img.name)
image_data.append(image)
image_names.append(os.path.splitext(img.orig_name)[0])
elif extras_mode == 2:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment