From ce9221e12541403c4339fab99ee892af6edd069f Mon Sep 17 00:00:00 2001 From: Hartmut Holzgraefe Date: Sat, 8 Feb 2020 11:21:05 +0000 Subject: [PATCH] only ignore bounds settings file if not found, do not ignore actul errors in it --- www/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/settings.py b/www/settings.py index fe50dd02..f7c2d4d4 100644 --- a/www/settings.py +++ b/www/settings.py @@ -32,7 +32,7 @@ from django.utils.translation import ugettext_lazy as _ from .settings_local import * try: from .settings_bounds import * -except: +except ModuleNotFoundError: pass from . import logconfig