Properly set TIME_ZONE
This commit is contained in:
parent
1a2f0b974d
commit
5f9ca5781f
|
@ -108,7 +108,7 @@ AUTH_PASSWORD_VALIDATORS = [
|
|||
|
||||
LANGUAGE_CODE = "en-us"
|
||||
|
||||
TIME_ZONE = os.environ["TZ"]
|
||||
TIME_ZONE = os.environ.get("TZ", "UTC")
|
||||
|
||||
USE_I18N = True
|
||||
|
||||
|
|
Loading…
Reference in New Issue