From 9ec8aa5e5d42ac4529846f7eae6bf4982800abff Mon Sep 17 00:00:00 2001 From: darkryder Date: Wed, 21 Jan 2015 22:25:57 +0530 Subject: Fixed #24149 -- Normalized tuple settings to lists. --- docs/internals/contributing/writing-documentation.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/internals') diff --git a/docs/internals/contributing/writing-documentation.txt b/docs/internals/contributing/writing-documentation.txt index a08d07eae5..5c8da281ac 100644 --- a/docs/internals/contributing/writing-documentation.txt +++ b/docs/internals/contributing/writing-documentation.txt @@ -312,14 +312,14 @@ example: ADMINS ------ - Default: ``()`` (Empty tuple) + Default: ``[]`` (Empty list) - A tuple that lists people who get code error notifications. When + A list of all the people who get code error notifications. When ``DEBUG=False`` and a view raises an exception, Django will email these people - with the full exception information. Each member of the tuple should be a tuple + with the full exception information. Each member of the list should be a tuple of (Full name, email address). Example:: - (('John', 'john@example.com'), ('Mary', 'mary@example.com')) + [('John', 'john@example.com'), ('Mary', 'mary@example.com')] Note that Django will email *all* of these people whenever an error happens. See :doc:`/howto/error-reporting` for more information. -- cgit v1.3