aboutsummaryrefslogtreecommitdiff
path: root/instance
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-10 21:38:39 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-10 21:38:39 +0100
commit7651560a2d075e7f68d2323d88cec52af873d6fc (patch)
tree44774deefec4e6c1fdf2fd7fea14d4403f2d97ad /instance
parentfixed issues reported by flake8. (diff)
downloadnewspipe-7651560a2d075e7f68d2323d88cec52af873d6fc.tar.gz
newspipe-7651560a2d075e7f68d2323d88cec52af873d6fc.tar.bz2
newspipe-7651560a2d075e7f68d2323d88cec52af873d6fc.zip
added a way to specify a configuration file via an environment variable
Diffstat (limited to 'instance')
-rw-r--r--instance/production.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/instance/production.py b/instance/production.py
index 7fd59916..e5c43190 100644
--- a/instance/production.py
+++ b/instance/production.py
@@ -44,7 +44,7 @@ MAIL_PASSWORD = None
MAIL_DEFAULT_SENDER = "admin@admin.localhost"
# Misc
-BASE_DIR = os.path.abspath(os.path.dirname('.'))
+BASE_DIR = os.path.abspath(os.path.dirname("."))
LANGUAGES = {"en": "English", "fr": "French"}
TIME_ZONE = {"en": "US/Eastern", "fr": "Europe/Paris"}
ADMIN_EMAIL = "admin@admin.localhost"
bgstack15