From e1ad5111872bcca3f15efef997569e9229a81e49 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 3 Feb 2016 21:06:15 +0100 Subject: fixed loading of the CDN address --- src/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/conf.py') diff --git a/src/conf.py b/src/conf.py index 8ee77ceb..38dbee69 100644 --- a/src/conf.py +++ b/src/conf.py @@ -23,6 +23,7 @@ TIME_ZONE = { ON_HEROKU = int(os.environ.get('HEROKU', 0)) == 1 DEFAULTS = {"platform_url": "https://JARR.herokuapp.com/", + "cdn_address": "", "admin_email": "root@jarr.localhost", "postmark_api_key": "", "recaptcha_public_key": "", @@ -107,7 +108,7 @@ WEBSERVER_HOST = config.get('webserver', 'host') WEBSERVER_PORT = config.getint('webserver', 'port') WEBSERVER_SECRET = config.get('webserver', 'secret') -CDN_ADDRESS = config.get('cdn', 'address') +CDN_ADDRESS = config.get('cdn', 'cdn_address') NOTIFICATION_EMAIL = config.get('notification', 'notification_email') NOTIFICATION_HOST = config.get('notification', 'host') -- cgit