From 7651560a2d075e7f68d2323d88cec52af873d6fc Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 10 Mar 2020 21:38:39 +0100 Subject: added a way to specify a configuration file via an environment variable --- instance/production.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'instance/production.py') 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" -- cgit