Commit 9a4e6508 authored by Pluventi's avatar Pluventi
Browse files

Update postprocessing.py

Solution for anyone getting an error when batching on extras, even with a clean install of "stable diffusion webui"
parent 22bcc7be
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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: