Bugfix parsing publishing date with milliseconds (#114)

pull/118/head
OzzieIsaacs 7 years ago
parent ed459ddb9b
commit ad40a2b5a6

@ -283,7 +283,7 @@ def mimetype_filter(val):
@app.template_filter('formatdate')
def formatdate(val):
conformed_timestamp = re.sub(r"[:]|([-](?!((\d{2}[:]\d{2})|(\d{4}))$))", '', val)
formatdate = datetime.datetime.strptime(conformed_timestamp[:-5], "%Y%m%d %H%M%S")
formatdate = datetime.datetime.strptime(conformed_timestamp[:15], "%Y%m%d %H%M%S")
return format_date(formatdate, format='medium',locale=get_locale())

Loading…
Cancel
Save