﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
26581	"Docs for Sitemaps: Fix variable name on ""Initialization"" section."	Pablo Vallejo	nobody	"


Link: https://docs.djangoproject.com/en/1.9/ref/contrib/sitemaps/#initialization

The variable '''sitemaps''' should be '''sitemap''' without the '''s'''.

'''Original:''' 

{{{
from django.contrib.sitemaps.views import sitemap

url(r'^sitemap\.xml$', sitemap, {'sitemaps': sitemaps},
    name='django.contrib.sitemaps.views.sitemap')

}}}

'''Intended:'''

{{{
from django.contrib.sitemaps.views import sitemap

url(r'^sitemap\.xml$', sitemap, {'sitemaps': sitemap},
    name='django.contrib.sitemaps.views.sitemap')

}}}"	Uncategorized	closed	Documentation	1.9	Normal	invalid			Unreviewed	0	0	0	0	0	0
