From c05c253b4216bf3f740e2dc592323248f0eacc44 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Thu, 14 May 2015 11:58:43 +0200 Subject: [PATCH] do not print - but ignore if localsettings are not existing Signed-off-by: Nico Schottelius --- dynamicweb/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynamicweb/settings.py b/dynamicweb/settings.py index 01f4c626..fa58a83c 100644 --- a/dynamicweb/settings.py +++ b/dynamicweb/settings.py @@ -109,4 +109,4 @@ STATIC_ROOT = os.path.join(BASE_DIR, 'static') try: from .settings_local import * except ImportError as e: - print(e) + pass