From 5df2f840b2459ae1cc9484a2dd20cdbd01b6d989 Mon Sep 17 00:00:00 2001 From: Johannes Date: Thu, 2 Nov 2023 14:48:27 +0100 Subject: [PATCH] more readable format for breakfast wishes --- parse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.py b/parse.py index 89ce7ea..b97cd1c 100644 --- a/parse.py +++ b/parse.py @@ -124,7 +124,7 @@ def wiki_stats(items: Dict[int, str], count_items: Dict[int, int], questions: Di ret += '== Wünsche an das ewige Frühstück ==\n' for wish in quest_answers[BREAKFASTWISHES_ID]: - ret += f"*
{wish[1]}
\n" + ret += '* ' + wish[1].replace('\r\n', '
').replace('\n', '
') + '\n' ret += "\n" ret += ('== Checkbox-Abfragen ==\n'