mirror of
https://github.com/lllyasviel/Fooocus.git
synced 2026-08-16 13:13:16 +02:00
fix: use stting isntead of quote wrap for A1111 created_by
This commit is contained in:
@@ -877,7 +877,7 @@ def worker():
|
|||||||
|
|
||||||
if modules.config.metadata_created_by != 'None':
|
if modules.config.metadata_created_by != 'None':
|
||||||
generation_params |= {
|
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])
|
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])
|
||||||
|
|||||||
Reference in New Issue
Block a user