teamplayer: set USE_TZ to False
Although the documentation says it defaults to False, it seems to be getting set to True in my deployments. This explicitely sets it to false and also sets the TIMEZONE to UTC.
This commit is contained in:
parent
95e3d1e9af
commit
359ec88aed
|
@ -11,7 +11,8 @@ import os
|
||||||
DEBUG = False
|
DEBUG = False
|
||||||
TEMPLATE_DEBUG = DEBUG
|
TEMPLATE_DEBUG = DEBUG
|
||||||
|
|
||||||
TIME_ZONE = 'America/New_York'
|
TIME_ZONE = 'UTC'
|
||||||
|
USE_TZ = False
|
||||||
|
|
||||||
# Language code for this installation. All choices can be found here:
|
# Language code for this installation. All choices can be found here:
|
||||||
# http://www.i18nguy.com/unicode/language-identifiers.html
|
# http://www.i18nguy.com/unicode/language-identifiers.html
|
||||||
|
|
Loading…
Reference in New Issue