Fix missing spaces in text
All checks were successful
Docker Build and Push / build-and-push (push) Successful in 2m17s

This commit was merged in pull request #9.
This commit is contained in:
2026-01-23 12:53:19 -05:00
parent ea969132f8
commit 5d4d587d1d
8 changed files with 14 additions and 16 deletions

2
app.py
View File

@@ -65,8 +65,6 @@ def inject_translations():
template = ( template = (
g.translations.get(section, {}) g.translations.get(section, {})
.get(key, f"${section}: {key}$") .get(key, f"${section}: {key}$")
.replace("\\n", " \\n")
.replace("\n", "")
) )
try: try: