Fixed date formatting in CHANGELOG.

This commit is contained in:
Richard Moore 2020-01-11 04:17:08 -05:00
parent 90ed07c74e
commit bb9aa808a0
No known key found for this signature in database
GPG Key ID: 665176BE8E9DC651

@ -25,7 +25,7 @@ function getDate(date) {
function getDateTime(date) {
return getDate(date) + " " + [
date.getHours(),
zpad(date.getHours()) ,
zpad(date.getMinutes() + 1)
].join(":");
}