From cd65f21d98566152940b0852feee4d21f6db4d52 Mon Sep 17 00:00:00 2001 From: Manuel Schmid Date: Mon, 15 Jan 2024 23:14:49 +0100 Subject: [PATCH] fix: use stting isntead of quote wrap for A1111 created_by --- modules/async_worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/async_worker.py b/modules/async_worker.py index 5836176c..f4e8a2a6 100644 --- a/modules/async_worker.py +++ b/modules/async_worker.py @@ -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])