Skip to content

Commit

Permalink
Fixed #17309 -- Typo in the IGNORABLE_404_URLS example.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17160 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
aaugustin committed Nov 28, 2011
1 parent 9d6321c commit 6bfae3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/howto/error-reporting.txt
Expand Up @@ -87,8 +87,8 @@ crawlers often request::
import re import re
IGNORABLE_404_URLS = ( IGNORABLE_404_URLS = (
re.compile(r'^/apple-touch-icon.*\.png$'), re.compile(r'^/apple-touch-icon.*\.png$'),
re.compile(r'^/favicon\.ico$), re.compile(r'^/favicon\.ico$'),
re.compile(r'^/robots\.txt$), re.compile(r'^/robots\.txt$'),
) )


(Note that these are regular expressions, so we put a backslash in front of (Note that these are regular expressions, so we put a backslash in front of
Expand Down

0 comments on commit 6bfae3d

Please sign in to comment.