fix: add missing image_extension parameter to log call

This commit is contained in:
Manuel Schmid 2024-01-14 14:23:36 +01:00
parent 2bd7ae1e6d
commit 694763447d
No known key found for this signature in database
GPG Key ID: 32C4F7569B40B84B
1 changed files with 1 additions and 1 deletions

View File

@ -801,7 +801,7 @@ def worker():
if n != 'None':
d.append((f'LoRA {li + 1}', f'{n} : {w}'))
d.append(('Version', 'v' + fooocus_version.version))
log(x, d)
log(x, d, image_extension)
yield_result(async_task, imgs, do_not_show_finished_images=len(tasks) == 1)
except ldm_patched.modules.model_management.InterruptProcessingException as e: