Extra newline

main
Bob Mottram 2020-10-04 22:55:09 +01:00
parent a547616487
commit 4f32cfebc8
1 changed files with 3 additions and 3 deletions

View File

@ -5343,9 +5343,9 @@ def htmlNewswire(newswire: str) -> str:
htmlStr = ''
for dateStr, item in newswire.items():
htmlStr += '<p class="newswireItem">' + \
'<a href="' + item[1] + '">' + item[0] + '</a><br>'
htmlStr += '<label class="newswireDate">'
htmlStr += dateStr.replace('+00:00', '') + '</label></p>'
'<a href="' + item[1] + '">' + item[0] + '</a>'
htmlStr += ' <label class="newswireDate">'
htmlStr += dateStr.replace('+00:00', '') + '</label></p><br>'
return htmlStr