Remove date ending

main
Bob Mottram 2020-10-06 22:33:54 +01:00
parent f46f7e4480
commit 81834dfcaa
1 changed files with 1 additions and 1 deletions

View File

@ -5368,7 +5368,7 @@ def htmlNewswire(newswire: str, nickname: str, moderator: bool,
'/newswireunvote=' + dateStrLink + '" ' + \
'title="' + translate['Remove Vote'] + '">' + \
'<label class="newswireDateApproved">'
htmlStr += dateStr + '</label></a></p>'
htmlStr += dateStr.replace('+00:00', '') + '</label></a></p>'
else:
htmlStr += ' <label class="newswireDateApproved">'
htmlStr += dateStr.replace('+00:00', '') + '</label></p>'