diff options
| author | Mike Edmunds <medmunds@gmail.com> | 2025-07-21 17:17:49 -0700 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2025-07-22 13:53:56 +0200 |
| commit | a8536e33da6365fb7bba901a06a67d163d0d4c8a (patch) | |
| tree | 95aeb3b1d7f1403605fc900299382e97b40ec8ce | |
| parent | 0f5b573d3d1909f8cd28aaea240a6a0e734faa92 (diff) | |
Refs #36138 -- Corrected ADMINS setting format in django/conf/global_settings.py comment.
| -rw-r--r-- | django/conf/global_settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
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" <anotheremail@example.com>'] ADMINS = [] # List of IP addresses, as strings, that: |
