On Mon, Apr 25, 2016 at 1:00 PM, Robert Roskam <[email protected]> wrote: > I realize this is a really, really obvious and easily fixed newbie error. > But here it is: > > urlpatterns = [ > url(r'^sitemap/', > TemplateView.as_view(template_name='brochure/sitemap.html'), > name="sitemap"), > # More urls > ] > > Sitemap should end with dollar sign.
The problem is that the url should *usually* end with a dollar sign. There are valid use cases for a url not starting with a caret or ending with a dollar. Cheers Tom -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/CAFHbX1JcWdZbdLs3HzD-z671tdDbXO2TU%3DQLf_UvjjRbySGYEw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
