diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2011-11-28 19:41:58 +0000 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2011-11-28 19:41:58 +0000 |
| commit | 6bfae3de7cba50f53159694ae23aa65863760e06 (patch) | |
| tree | 857fe2d0eb5c236acb9a832f3149a576b4949a61 /docs/howto/error-reporting.txt | |
| parent | 9d6321c9216db6f34cd0fe6cd6467f8b80029436 (diff) | |
Fixed #17309 -- Typo in the IGNORABLE_404_URLS example.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17160 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/howto/error-reporting.txt')
| -rw-r--r-- | docs/howto/error-reporting.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/howto/error-reporting.txt b/docs/howto/error-reporting.txt index 5873a32e73..64af2a0980 100644 --- a/docs/howto/error-reporting.txt +++ b/docs/howto/error-reporting.txt @@ -87,8 +87,8 @@ crawlers often request:: import re IGNORABLE_404_URLS = ( re.compile(r'^/apple-touch-icon.*\.png$'), - re.compile(r'^/favicon\.ico$), - re.compile(r'^/robots\.txt$), + re.compile(r'^/favicon\.ico$'), + re.compile(r'^/robots\.txt$'), ) (Note that these are regular expressions, so we put a backslash in front of |
