Date format

merge-requests/8/head
Bob Mottram 2020-10-12 17:34:56 +01:00
parent b4226d9e7d
commit 2d38065e42
1 changed files with 1 additions and 1 deletions

View File

@ -5512,7 +5512,7 @@ def htmlNewswire(newswire: str, nickname: str, moderator: bool,
htmlStr = ''
for dateStr, item in newswire.items():
publishedDate = \
datetime.strptime(dateStr, "%Y-%m-%dT%H:%M:%SZ")
datetime.strptime(dateStr, "%Y-%m-%d %H:%M:%S+00:00")
dateStrLink = publishedDate.strftime("%Y-%m-%d")
moderatedItem = item[5]
if moderatedItem and 'vote:' + nickname in item[2]: