diff --git a/owrx/controllers/services.py b/owrx/controllers/services.py
index 7bb91ee3..90e5b4a4 100644
--- a/owrx/controllers/services.py
+++ b/owrx/controllers/services.py
@@ -45,15 +45,15 @@ class ServiceController(AuthorizationMixin, WebpageController):
ts = Repeaters.lastDownloaded()
if ts > 0:
ts = datetime.fromtimestamp(ts).strftime("%H:%M:%S, %m/%d/%Y")
- result += "
Repeaters database downloaded at {0}.
\n".format(ts)
+ result += "Repeaters database downloaded at {0}.
\n".format(ts)
else:
- result += "Repeaters database not downloaded.
\n"
+ result += "Repeaters database not downloaded.
\n"
ts = EIBI.lastDownloaded()
if ts > 0:
ts = datetime.fromtimestamp(ts).strftime("%H:%M:%S, %m/%d/%Y")
- result += "Shortwave schedule downloaded at {0}.
\n".format(ts)
+ result += "Shortwave schedule downloaded at {0}.
\n".format(ts)
else:
- result += "Shortwave schedule not downloaded.
\n"
+ result += "Shortwave schedule not downloaded.
\n"
return "\n" + result + "
\n"
@staticmethod