From 601d8fac943319c88cdce51b99bdd655791d7d03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Thu, 21 Jan 2021 17:32:25 +0200 Subject: [PATCH] Remove the warning about a missing local_settings.py --- hc/settings.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/hc/settings.py b/hc/settings.py index 2d0da391..2c2ed55a 100644 --- a/hc/settings.py +++ b/hc/settings.py @@ -6,7 +6,6 @@ https://docs.djangoproject.com/en/2.1/ref/settings """ import os -import warnings BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) @@ -235,5 +234,3 @@ SIGNAL_CLI_ENABLED = envbool("SIGNAL_CLI_ENABLED", "False") if os.path.exists(os.path.join(BASE_DIR, "hc/local_settings.py")): from .local_settings import * -else: - warnings.warn("local_settings.py not found, using defaults")