From 7adde65e56c18bc981a543b74653df4b8bf2d9d3 Mon Sep 17 00:00:00 2001 From: bcail Date: Fri, 20 Dec 2024 08:50:45 -0500 Subject: [PATCH] Style the settings error message Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> --- django/core/management/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/management/__init__.py b/django/core/management/__init__.py index e3bacf4cfa..9d49ef8af2 100644 --- a/django/core/management/__init__.py +++ b/django/core/management/__init__.py @@ -255,7 +255,7 @@ class ManagementUtility: app_name = commands[subcommand] except KeyError: if os.environ.get("DJANGO_SETTINGS_MODULE") and self.settings_exception: - sys.stderr.write(str(self.settings_exception) + "\n") + sys.stderr.write(self.style.NOTICE(str(self.settings_exception) + "\n")) sys.exit(1) elif not settings.configured: sys.stderr.write("No Django settings specified.\n")