Remove redundant filter() in tutorial example. Fixes #3280

Thanks to @gogobook for the report!
pull/3232/head
Matt Westcott 2017-01-19 17:39:28 +00:00
rodzic 4f1d3509ff
commit cbb31c80e1
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -644,7 +644,7 @@ will get you a 404, since we haven't yet defined a "tags" view. Add to ``models.
# Filter by tag
tag = request.GET.get('tag')
blogpages = BlogPage.objects.filter().filter(tags__name=tag)
blogpages = BlogPage.objects.filter(tags__name=tag)
# Update template context
context = super(BlogTagIndexPage, self).get_context(request)