Strip trailing whitespace from templates

This commit is contained in:
Mark Qvist
2026-05-03 18:34:58 +02:00
parent c8235544e8
commit 4733d6d75a
+2 -2
View File
@@ -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)