From f4e75f5c39e63b9c51ea8d73efddc1938bea8146 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Thu, 23 Aug 2012 06:30:43 -0400 Subject: [PATCH] Add subdomain_branding key to aws settings --- lms/envs/aws.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lms/envs/aws.py b/lms/envs/aws.py index a72ad92957..bf7d85b91e 100644 --- a/lms/envs/aws.py +++ b/lms/envs/aws.py @@ -47,7 +47,8 @@ LOGGING = get_logger_config(LOG_DIR, syslog_addr=(ENV_TOKENS['SYSLOG_SERVER'], 514), debug=False) -COURSE_LISTINGS = ENV_TOKENS['COURSE_LISTINGS'] +COURSE_LISTINGS = ENV_TOKENS.get('COURSE_LISTINGS', {}) +SUBDOMAIN_BRANDING = ENV_TOKENS.get('SUBDOMAIN_BRANDING', {}) ############################## SECURE AUTH ITEMS ############################### # Secret things: passwords, access keys, etc.