From ce5cd71daa6715021140cb7698589fbefdf6bb49 Mon Sep 17 00:00:00 2001 From: bskjon Date: Sun, 14 Apr 2024 02:41:26 +0200 Subject: [PATCH] Adjustments --- apps/pyMetadata/sources/select.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/pyMetadata/sources/select.py b/apps/pyMetadata/sources/select.py index 39b48a5c..663dab46 100644 --- a/apps/pyMetadata/sources/select.py +++ b/apps/pyMetadata/sources/select.py @@ -66,7 +66,8 @@ class UseSource(): for wd in weightResult: titles.append(wd.result.data.title) titles.extend(wd.result.data.altTitle) - logger.info(f"Title {self.title} gave the result: {"\n\t".join(titles)} \nWith used: {scored[0].result.data.title}\n") + joinedTitles = "\n\t".join(titles) + logger.info(f"Title {self.title} gave the result: {joinedTitles} \nWith used: {scored[0].result.data.title}\n") except: pass