Skip to content

Commit 32ce126

Browse files
committed
Disable django timezone support
This was enabled by default in django 5.0, and since we don't use it we have to explicitly disable it.
1 parent b10bf47 commit 32ce126

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

pgweb/settings.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020

2121
DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
2222

23+
# We don't use the django timezone support
24+
USE_TZ = False
25+
2326
# Local time zone for this installation. Choices can be found here:
2427
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
2528
# although not all choices may be available on all operating systems.

0 commit comments

Comments
 (0)