summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-19 18:51:37 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-19 18:51:37 +0000
commit7e975bb636289d9115373de8b9d6f99e26f9558b (patch)
treec232c266785d9827e894523bb3ed447d949a649d /docs
parent534c0d8442e9646c10e746b45c48b8092c105d35 (diff)
Fixed #4327 -- Fixed silly typo in code example. Pointed out by
jshaffer2112@gmail.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5292 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/settings.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/settings.txt b/docs/settings.txt
index 72c6e4ce54..bf0a9f85f6 100644
--- a/docs/settings.txt
+++ b/docs/settings.txt
@@ -1055,7 +1055,7 @@ You can tell Django to stop reporting particular 404s by tweaking the
tuple of strings. For example::
IGNORABLE_404_ENDS = ('.php', '.cgi')
- IGNORABLE_404_STARTS = ('/phpmyadmin/')
+ IGNORABLE_404_STARTS = ('/phpmyadmin/',)
In this example, a 404 to any URL ending with ``.php`` or ``.cgi`` will *not*
be reported. Neither will any URL starting with ``/phpmyadmin/``.