aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/conf.py b/conf.py
index 98bb03d9..74aa834b 100644
--- a/conf.py
+++ b/conf.py
@@ -17,6 +17,11 @@ LANGUAGES = {
'fr': 'French'
}
+TIME_ZONE = {
+ "en": "US/Eastern",
+ "fr": "Europe/Paris"
+}
+
ON_HEROKU = int(os.environ.get('HEROKU', 0)) == 1
if not ON_HEROKU:
bgstack15