From c82d5c781d22bc2f2ed7aaf44f4d93fe337cc4d6 Mon Sep 17 00:00:00 2001 From: Albert Hopkins Date: Sun, 1 Mar 2015 11:45:06 +0000 Subject: [PATCH] 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. --- appliances/teamplayer/settings_local.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appliances/teamplayer/settings_local.py b/appliances/teamplayer/settings_local.py index 2812856..8c3439a 100644 --- a/appliances/teamplayer/settings_local.py +++ b/appliances/teamplayer/settings_local.py @@ -11,7 +11,8 @@ import os DEBUG = False 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: # http://www.i18nguy.com/unicode/language-identifiers.html