From f30932d08c51cff8d7464b27df1a5a1f931d6b9b Mon Sep 17 00:00:00 2001
From: Bob Mottram
Date: Mon, 26 Oct 2020 20:44:33 +0000
Subject: [PATCH] Newlines
---
webinterface.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/webinterface.py b/webinterface.py
index e28f7a4a..47e2d159 100644
--- a/webinterface.py
+++ b/webinterface.py
@@ -5660,10 +5660,10 @@ def htmlNewswire(newswire: {}, nickname: str, moderator: bool,
'/newswireunvote=' + dateStrLink + '" ' + \
'title="' + translate['Remove Vote'] + '">'
htmlStr += '
'
+ iconsDir + '/vote.png" />\n'
else:
htmlStr += ' '
- htmlStr += dateShown + ''
+ htmlStr += dateShown + '\n'
else:
totalVotesStr = ''
totalVotes = 0
@@ -5685,14 +5685,14 @@ def htmlNewswire(newswire: {}, nickname: str, moderator: bool,
'title="' + translate['Vote'] + '">'
htmlStr += ''
- htmlStr += ''
+ htmlStr += '\n'
else:
htmlStr += '' + \
'' + \
item[0] + '' + \
totalVotesStr
htmlStr += ' '
- htmlStr += dateShown + '
'
+ htmlStr += dateShown + '\n'
return htmlStr