Properly set TIME_ZONE

This commit is contained in:
Lukáš Kucharczyk 2023-01-03 20:52:23 +01:00
parent 1a2f0b974d
commit 5f9ca5781f
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ AUTH_PASSWORD_VALIDATORS = [
LANGUAGE_CODE = "en-us" LANGUAGE_CODE = "en-us"
TIME_ZONE = os.environ["TZ"] TIME_ZONE = os.environ.get("TZ", "UTC")
USE_I18N = True USE_I18N = True