From a8536e33da6365fb7bba901a06a67d163d0d4c8a Mon Sep 17 00:00:00 2001 From: Mike Edmunds Date: Mon, 21 Jul 2025 17:17:49 -0700 Subject: [PATCH] Refs #36138 -- Corrected ADMINS setting format in django/conf/global_settings.py comment. --- django/conf/global_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index a414d1428c..bd758bfcc4 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -22,7 +22,7 @@ DEBUG = False DEBUG_PROPAGATE_EXCEPTIONS = False # People who get code error notifications. In the format -# [('Full Name', 'email@example.com'), ('Full Name', 'anotheremail@example.com')] +# ["email@example.com", '"Full Name" '] ADMINS = [] # List of IP addresses, as strings, that: