diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/img2img.py | 3 | ||||
-rw-r--r-- | modules/txt2img.py | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/modules/img2img.py b/modules/img2img.py index fea51667..6da974e4 100644 --- a/modules/img2img.py +++ b/modules/img2img.py @@ -181,8 +181,7 @@ def img2img(id_task: str, mode: int, prompt: str, negative_prompt: str, prompt_s print(generation_info_js)
for img in processed.images:
- if hasattr(img, 'already_saved_as'):
- img.already_saved_as += f'?{int(time())}'
+ img.already_saved_as += f'?{int(time())}'
if opts.do_not_show_images:
processed.images = []
diff --git a/modules/txt2img.py b/modules/txt2img.py index 57278bdc..6ebca656 100644 --- a/modules/txt2img.py +++ b/modules/txt2img.py @@ -65,8 +65,7 @@ def txt2img(id_task: str, prompt: str, negative_prompt: str, prompt_styles, step print(generation_info_js)
for img in processed.images:
- if hasattr(img, 'already_saved_as'):
- img.already_saved_as += f'?{int(time())}'
+ img.already_saved_as += f'?{int(time())}'
if opts.do_not_show_images:
processed.images = []
|