Open alastair opened 10 years ago
Running django with time zone support results in these warnings:
RuntimeWarning: DateTimeField BadgeToUser.created received a naive datetime (2014-08-01 10:22:33.643602) while time zone support is active.
This is easily fixed by using django's timezone aware now from the django.utils.timezone package.
now
django.utils.timezone
The changes seem reasonable (also, sorry for the huuuge delay in responding) - I'm concerned about how this will affect people already using the app.
Running django with time zone support results in these warnings:
This is easily fixed by using django's timezone aware
now
from thedjango.utils.timezone
package.