fix: use stting isntead of quote wrap for A1111 created_by

This commit is contained in:
Manuel Schmid 2024-01-15 23:14:49 +01:00
parent 7b9deb17ee
commit cd65f21d98
No known key found for this signature in database
GPG Key ID: 32C4F7569B40B84B
1 changed files with 1 additions and 1 deletions

View File

@ -877,7 +877,7 @@ def worker():
if modules.config.metadata_created_by != 'None':
generation_params |= {
'Created By': quote(modules.config.metadata_created_by)
'Created By': f'{modules.config.metadata_created_by}'
}
generation_params_text = ", ".join([k if k == v else f'{k}: {quote(v)}' for k, v in generation_params.items() if v is not None])