diff --git a/apimanager/apimanager/settings.py b/apimanager/apimanager/settings.py index 89117ed8..0503d46a 100644 --- a/apimanager/apimanager/settings.py +++ b/apimanager/apimanager/settings.py @@ -273,11 +273,11 @@ LOGO_URL = 'https://static.openbankproject.com/images/OBP/favicon.png' OVERRIDE_CSS_URL = None -VERIFY = True if API_HOST.startswith("https") else False +VERIFY = True # Local settings can override anything in here try: - from apimanager.local_settings import * + from apimanager.local_settings import * # noqa except ImportError: pass # EVERYTHING BELOW HERE WILL NOT BE OVERWRITTEN BY LOCALSETTINGS!