> return django.views.generic.date_based.archive_index( > request, > queryset = set, > template_name = 'search_results.html', > extra_context = {'set': set} > ) ... > I'm now getting the error: > > archive_index() takes at least 3 non-keyword arguments (1 given)
Nope, you're passing it one non-keyword argument and 3 keyword ones. > queryset = set, is a keyword argument, as is the template_name and extra_context. Hope that helps... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---