From 265a3e56ee62aefea25feafc28a97f84a8ecb54a Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Mon, 12 May 2025 10:42:53 +0200 Subject: [PATCH] Textual: setting-name in all-caps --- bsmain/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bsmain/__init__.py b/bsmain/__init__.py index 155ad6c..792a705 100644 --- a/bsmain/__init__.py +++ b/bsmain/__init__.py @@ -47,13 +47,13 @@ def check_base_url_is_url(app_configs, **kwargs): if parts.scheme not in ["http", "https"]: return [Warning( - "The base_url setting must be a valid URL (starting with http or https).", + "The BASE_URL setting must be a valid URL (starting with http or https).", id="bsmain.W003", )] if not parts.hostname: return [Warning( - "The base_url setting must be a valid URL. The hostname must be set.", + "The BASE_URL setting must be a valid URL. The hostname must be set.", id="bsmain.W003", )]