From 6a3fac887c9f886874f1538e02ce99d73d18d0b0 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 eff5af2d..428b38ad 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')