From 303b75c1490e8f9e146ba207f3425a7f0317cb12 Mon Sep 17 00:00:00 2001 From: AUTOMATIC <16777216c@gmail.com> Date: Mon, 12 Sep 2022 00:20:05 +0300 Subject: [PATCH] save sd upscales as samples not grids --- modules/img2img.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/img2img.py b/modules/img2img.py index e046b9a95..7461bad50 100644 --- a/modules/img2img.py +++ b/modules/img2img.py @@ -180,7 +180,7 @@ def img2img(prompt: str, negative_prompt: str, prompt_style: str, init_img, init result_images.append(combined_image) if opts.samples_save: - images.save_image(combined_image, p.outpath_samples, "", start_seed, prompt, opts.grid_format, info=initial_info) + images.save_image(combined_image, p.outpath_samples, "", start_seed, prompt, opts.samples_format, info=initial_info) processed = Processed(p, result_images, seed, initial_info)