diff --git a/django/views/generic/list.py b/django/views/generic/list.py
index 9797356..63f2808 100644
a
|
b
|
class BaseListView(MultipleObjectMixin, View):
|
116 | 116 | if not allow_empty and len(self.object_list) == 0: |
117 | 117 | raise Http404(_(u"Empty list and '%(class_name)s.allow_empty' is False.") |
118 | 118 | % {'class_name': self.__class__.__name__}) |
119 | | context = self.get_context_data(object_list=self.object_list) |
| 119 | context = self.get_context_data(object_list=self.object_list, **kwargs) |
120 | 120 | return self.render_to_response(context) |
121 | 121 | |
122 | 122 | |