From 4733d6d75a28ec07f13cfd8920c4ce59d48fde29 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sun, 3 May 2026 18:34:58 +0200 Subject: [PATCH] Strip trailing whitespace from templates --- RNS/Utilities/rngit/pages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RNS/Utilities/rngit/pages.py b/RNS/Utilities/rngit/pages.py index 4dcccf09..9f22ae88 100644 --- a/RNS/Utilities/rngit/pages.py +++ b/RNS/Utilities/rngit/pages.py @@ -193,7 +193,7 @@ class NomadNetworkNode(): if os.access(path, os.X_OK): try: result = subprocess.run([path], stdout=subprocess.PIPE) - template = result.stdout.decode("utf-8") + template = result.stdout.decode("utf-8").rstrip() return template except Exception as e: @@ -202,7 +202,7 @@ class NomadNetworkNode(): else: try: - with open(path, "rb") as fh: return fh.read().decode("utf-8") + with open(path, "rb") as fh: return fh.read().decode("utf-8").rstrip() except Exception as e: RNS.log(f"Could not get static template content from {path}: {e}", RNS.LOG_ERROR)