Commit 7a1a9d00 by Florian Apolloner

Removed unneeded comments.

parent 4a74efb8
from django.contrib.contenttypes.models import ContentType
from django.shortcuts import get_object_or_404
#this does not work anymore in django 1.5, see also: https://docs.djangoproject.com/en/1.4/topics/generic-views-migration/
#from django.views.generic.list_detail import object_list
from django.views.generic.list import ListView
from taggit.models import TaggedItem, Tag
......@@ -17,6 +15,5 @@ def tagged_object_list(request, slug, queryset, **kwargs):
if "extra_context" not in kwargs:
kwargs["extra_context"] = {}
kwargs["extra_context"]["tag"] = tag
#return object_list(request, qs, **kwargs)
return ListView.as_view(request, qs, **kwargs)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment