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
82162dfffa
commit
c82d5c781d
|
@ -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