Ticket #14598: example_domain.diff

File example_domain.diff, 957 bytes (added by alex.brinsmead@…, 13 years ago)
  • django/conf/global_settings.py

    diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py
    index e9ab5c7..6ca0704 100644
    a b DEBUG_PROPAGATE_EXCEPTIONS = False  
    2121USE_ETAGS = False
    2222
    2323# 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'))
    2525ADMINS = ()
    2626
    2727# Tuple of IP addresses, as strings, that:
  • django/conf/project_template/settings.py

    diff --git a/django/conf/project_template/settings.py b/django/conf/project_template/settings.py
    index 7791b47..d3e6973 100644
    a b DEBUG = True  
    44TEMPLATE_DEBUG = DEBUG
    55
    66ADMINS = (
    7     # ('Your Name', 'your_email@domain.com'),
     7    # ('Your Name', 'your_email@example.com'),
    88)
    99
    1010MANAGERS = ADMINS
Back to Top