Hacker News new | ask | show | jobs
by jgalt212 312 days ago
Sort of like Django defaulting to Chicago time.
1 comments

For me, the latest django defaults to "TIME_ZONE = 'UTC'" in the settings.py.
"settings.py" is your local configuration. The global default is still Chicago:

* https://github.com/django/django/blob/main/django/conf/globa...

settings.py is automatically generated when creating a new project and overrides this global default. If you create a new django project and run it, it uses UTC.
I wonder what version they swapped it.