From a9a030a5fd150e6adc69c255d08a50600b6331eb Mon Sep 17 00:00:00 2001 From: David Taylor Date: Tue, 28 Apr 2015 01:05:40 +0100 Subject: [PATCH] Change timezone and turn off timezone support --- PyRIGS/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PyRIGS/settings.py b/PyRIGS/settings.py index 9f78c9cf..d7a4dcc2 100644 --- a/PyRIGS/settings.py +++ b/PyRIGS/settings.py @@ -174,13 +174,13 @@ else: LANGUAGE_CODE = 'en-gb' -TIME_ZONE = 'UTC' +TIME_ZONE = 'Europe/London' USE_I18N = True USE_L10N = True -USE_TZ = True +USE_TZ = False DATETIME_INPUT_FORMATS = ('%Y-%m-%dT%H:%M','%Y-%m-%dT%H:%M:%S')