diff --git a/conservancy/settings/prod.py b/conservancy/settings/prod.py index 1a0329557027985cdc2816e279f46cb40ee2624c..4318ad465373757aefe7c4e8c4df3bcb1e97112c 100644 --- a/conservancy/settings/prod.py +++ b/conservancy/settings/prod.py @@ -2,7 +2,7 @@ import json from django.core.exceptions import ImproperlyConfigured -from .base import * +from .base import * # NOQA DEBUG = False ALLOWED_HOSTS = ['www.sfconservancy.org', 'sfconservancy.org'] @@ -25,7 +25,7 @@ DATABASES = { # Apache/mod_wsgi doesn't make it straightforward to pass environment variables # to Django (can't use the Apache config). -with open(BASE_DIR.parent / 'secrets.json') as f: +with open(BASE_DIR.parent / 'secrets.json') as f: # NOQA secrets = json.load(f) def get_secret(secrets, setting):