diff options
author | Sakura-Luna <53183413+Sakura-Luna@users.noreply.github.com> | 2023-05-04 06:08:21 +0000 |
---|---|---|
committer | Sakura-Luna <53183413+Sakura-Luna@users.noreply.github.com> | 2023-05-04 06:08:21 +0000 |
commit | 35e5916af9ccf1661c6b262b768d4b241ab9eee7 (patch) | |
tree | 420039514edf1a8bfdd66fa14aa5731877681df1 | |
parent | 29e13867bff5a00388e5eb1dd04c16c6e8f33e4f (diff) | |
download | stable-diffusion-webui-gfx803-35e5916af9ccf1661c6b262b768d4b241ab9eee7.tar.gz stable-diffusion-webui-gfx803-35e5916af9ccf1661c6b262b768d4b241ab9eee7.tar.bz2 stable-diffusion-webui-gfx803-35e5916af9ccf1661c6b262b768d4b241ab9eee7.zip |
Revert "Add img2img refreshed correctly"
This reverts commit 988dd02632bf38e64bc0cf394ece2a5f7a64e15b.
-rw-r--r-- | modules/img2img.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/img2img.py b/modules/img2img.py index 6da974e4..953ac5d2 100644 --- a/modules/img2img.py +++ b/modules/img2img.py @@ -15,7 +15,6 @@ import modules.processing as processing from modules.ui import plaintext_to_html
import modules.images as images
import modules.scripts
-from time import time
def process_batch(p, input_dir, output_dir, inpaint_mask_dir, args):
@@ -180,9 +179,6 @@ def img2img(id_task: str, mode: int, prompt: str, negative_prompt: str, prompt_s if opts.samples_log_stdout:
print(generation_info_js)
- for img in processed.images:
- img.already_saved_as += f'?{int(time())}'
-
if opts.do_not_show_images:
processed.images = []
|