summaryrefslogtreecommitdiffstats
path: root/reports
diff options
context:
space:
mode:
Diffstat (limited to 'reports')
-rw-r--r--reports/reports.wsgi4
1 files changed, 2 insertions, 2 deletions
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