From 35169601a09cd4429797a488ce6372bb6835e6b2 Mon Sep 17 00:00:00 2001 From: Mike Olund Date: Tue, 14 Mar 2017 16:59:01 -0700 Subject: [PATCH] Fixed build (made FIXTURE_DIRS available on OpenShift config) --- edivorce/settings/base.py | 4 ++++ edivorce/settings/local.py | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/edivorce/settings/base.py b/edivorce/settings/base.py index d7773b13..9d845755 100644 --- a/edivorce/settings/base.py +++ b/edivorce/settings/base.py @@ -113,3 +113,7 @@ STATICFILES_FINDERS = ( BCGOV_NETWORK = os.environ.get('PROXY_NETWORK', '0.0.0.0/0') FORCE_SCRIPT_NAME = '/' + +FIXTURE_DIRS = ( + os.path.join(PROJECT_ROOT, 'edivorce', 'fixtures'), +) diff --git a/edivorce/settings/local.py b/edivorce/settings/local.py index 1640df34..52143535 100644 --- a/edivorce/settings/local.py +++ b/edivorce/settings/local.py @@ -19,7 +19,3 @@ WEASYPRINT_CSS_LOOPBACK = 'http://10.200.10.1:8000' DEPLOYMENT_TYPE = 'localdev' REGISTER_URL = '#' - -FIXTURE_DIRS = FIXTURE_DIRS = ( - os.path.join(PROJECT_ROOT, 'edivorce', 'fixtures'), - )