1
0
mirror of https://github.com/django/django.git synced 2025-04-05 05:56:42 +00:00

Style the settings error message

Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com>
This commit is contained in:
bcail 2024-12-20 08:50:45 -05:00 committed by GitHub
parent 78a85f814b
commit 7adde65e56
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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")