From dcb73d437306c8417715597e1b255eea47f7e037 Mon Sep 17 00:00:00 2001 From: missionfloyd Date: Sun, 21 Apr 2024 18:29:33 -0600 Subject: [PATCH] Fix save button --- modules/ui_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui_common.py b/modules/ui_common.py index e0bd74f5a..641420ca9 100644 --- a/modules/ui_common.py +++ b/modules/ui_common.py @@ -113,7 +113,7 @@ def save_files(js_data, images, do_make_zip, index): writer.writerow(fields) for image_index, filedata in enumerate(images, start_index): - image = Image.open(filedata) + image = Image.open(filedata[0]) is_grid = image_index < p.index_of_first_image