Parcourir la source

Fixed #20665 -- Missing backslash in sitemaps documentation

Thanks to roman for the report.
Baptiste Mispelon il y a 11 ans
Parent
commit
5005303ae7
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      docs/ref/contrib/sitemaps.txt

+ 1 - 1
docs/ref/contrib/sitemaps.txt

@@ -358,7 +358,7 @@ with a caching decorator -- you must name your sitemap view and pass
     from django.views.decorators.cache import cache_page
 
     urlpatterns = patterns('',
-        url(r'^sitemap.xml$',
+        url(r'^sitemap\.xml$',
             cache_page(86400)(sitemaps_views.index),
             {'sitemaps': sitemaps, 'sitemap_url_name': 'sitemaps'}),
         url(r'^sitemap-(?P<section>.+)\.xml$',