From 3b5713361a0bda8f284d5574a0249037cdb4a014 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Mon, 23 Oct 2017 15:55:32 +1100 Subject: [PATCH] Set timezone in base config --- lemoncurry/settings/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lemoncurry/settings/base.py b/lemoncurry/settings/base.py index c1e823a..fcbb1d0 100644 --- a/lemoncurry/settings/base.py +++ b/lemoncurry/settings/base.py @@ -111,9 +111,9 @@ AUTH_PASSWORD_VALIDATORS = [ # Internationalization # https://docs.djangoproject.com/en/1.11/topics/i18n/ -LANGUAGE_CODE = 'en-us' +LANGUAGE_CODE = 'en-au' -TIME_ZONE = 'UTC' +TIME_ZONE = 'Australia/Sydney' USE_I18N = True