Closed jchate6 closed 1 month ago
An issue has been discovered in the setup for tomtoolkit that mistakenly sets
DATETIME_FORMAT = 'Y-m-d H:m:s'
in settings.py. This code incorrectly used m (month) instead of i (minute) in the time format.
settings.py
m
i
We are deploying a release to tomtoolkit that will correct this bug for future TOMs.
This change is needed for your TOM to behave correctly.
This is the output template django format: https://docs.djangoproject.com/en/5.0/ref/templates/builtins/#std:templatefilter-date
An issue has been discovered in the setup for tomtoolkit that mistakenly sets
in
settings.py
. This code incorrectly usedm
(month) instead ofi
(minute) in the time format.We are deploying a release to tomtoolkit that will correct this bug for future TOMs.
This change is needed for your TOM to behave correctly.