Update postprocessing.py

Solution for anyone getting an error when batching on extras, even with a clean install of "stable diffusion webui"
This commit is contained in:
Pluventi 2023-04-03 03:32:48 +02:00
parent 22bcc7be42
commit 9a4e650800
1 changed files with 1 additions and 1 deletions

View File

@ -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: