diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py
index e9ab5c7..6ca0704 100644
a
|
b
|
DEBUG_PROPAGATE_EXCEPTIONS = False
|
21 | 21 | USE_ETAGS = False |
22 | 22 | |
23 | 23 | # People who get code error notifications. |
24 | | # In the format (('Full Name', 'email@domain.com'), ('Full Name', 'anotheremail@domain.com')) |
| 24 | # In the format (('Full Name', 'email@example.com'), ('Full Name', 'anotheremail@example.com')) |
25 | 25 | ADMINS = () |
26 | 26 | |
27 | 27 | # Tuple of IP addresses, as strings, that: |
diff --git a/django/conf/project_template/settings.py b/django/conf/project_template/settings.py
index 7791b47..d3e6973 100644
a
|
b
|
DEBUG = True
|
4 | 4 | TEMPLATE_DEBUG = DEBUG |
5 | 5 | |
6 | 6 | ADMINS = ( |
7 | | # ('Your Name', 'your_email@domain.com'), |
| 7 | # ('Your Name', 'your_email@example.com'), |
8 | 8 | ) |
9 | 9 | |
10 | 10 | MANAGERS = ADMINS |