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:
Albert Hopkins 2015-03-01 11:45:06 +00:00
parent 95e3d1e9af
commit 359ec88aed
1 changed files with 2 additions and 1 deletions

View File

@ -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