From ed417e2324496c805b7a78c7fb5e20d1b3d8a73e Mon Sep 17 00:00:00 2001 From: Michael Otto Date: Thu, 19 Mar 2026 08:01:23 +0100 Subject: [PATCH] changelog escaped gefixt --- .gitea/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index c15d464..d94cf5d 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -357,7 +357,7 @@ jobs: text = text.replace(">", ">") lines = text.splitlines() - result = "
".join(line for line in lines if line.strip()) + result = " ".join(line for line in lines if line.strip()) print(result, end="") EOF