aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-03 11:18:05 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-03 11:18:05 +0200
commit2dd17dee314439fe85be80e67b390bc5280f1722 (patch)
tree2ab742f010fe14ff1f73962d2c31e32c85b9f971 /conf.py
parentUsing datetime filter in all templates. (diff)
downloadnewspipe-2dd17dee314439fe85be80e67b390bc5280f1722.tar.gz
newspipe-2dd17dee314439fe85be80e67b390bc5280f1722.tar.bz2
newspipe-2dd17dee314439fe85be80e67b390bc5280f1722.zip
Available time zonez are defined in conf.py.
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