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
This commit is contained in:
parent
534c0d8442
commit
7e975bb636
|
@ -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/``.
|
||||
|
|
Loading…
Reference in New Issue