Im getting a name error: name sitemaps is not defined
from my urls.py when I try to integrate sitemaps with my application.
From my urls.py:
from django.contrib.sitemaps import Sitemap
(r'^sitemap\.xml$', 'django.contrib.sitemaps.views.sitemap', {'sitemaps': sitemaps}),
Is there something wrong with this regular expression from my urls.py? Or is there another problem going on?
Thanks for your input