From 88b6227c495061b536097cac31ea98dada7d25ca Mon Sep 17 00:00:00 2001 From: Michael Fenn Date: Fri, 11 Apr 2014 14:53:31 -0400 Subject: Handle the case where BCFG2_CONFIG_FILE isn't set in the environment --- reports/reports.wsgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'reports') diff --git a/reports/reports.wsgi b/reports/reports.wsgi index 711f64712..7113b3308 100644 --- a/reports/reports.wsgi +++ b/reports/reports.wsgi @@ -2,7 +2,6 @@ import os import Bcfg2.Options import Bcfg2.DBSettings -os.environ['DJANGO_SETTINGS_MODULE'] = 'Bcfg2.DBSettings' config_parsed = False import django.core.handlers.wsgi @@ -13,7 +12,8 @@ def application(environ, start_response): # with wsgi, the environment isn't present in os.environ, but # is passwd to the application function - os.environ['BCFG2_CONFIG_FILE'] = environ['BCFG2_CONFIG_FILE'] + if 'BCFG2_CONFIG_FILE' in environ: + os.environ['BCFG2_CONFIG_FILE'] = environ['BCFG2_CONFIG_FILE'] if not config_parsed: Bcfg2.Options.get_parser().parse() config_parsed = True -- cgit v1.2.3-1-g7c22