Merge branch 'master' of git://github.com/hgrimelid/django-pagination
[django-pagination.git] / linaro_django_pagination / templatetags / pagination_tags.py
index ab87ed4..aec6405 100644 (file)
@@ -124,8 +124,7 @@ class AutoPaginateNode(template.Node):
         context['page_obj'] = page_obj
         return u''
 
-
-def paginate(context, window=DEFAULT_WINDOW, hashtag=''):
+def paginate(context, window=DEFAULT_WINDOW):
     """
     Renders the ``pagination/pagination.html`` template, resulting in a
     Digg-like display of the available pages, given the current page.  If there
@@ -230,7 +229,6 @@ def paginate(context, window=DEFAULT_WINDOW, hashtag=''):
             'records': records,
             'page_obj': page_obj,
             'paginator': paginator,
-            'hashtag': hashtag,
             'is_paginated': paginator.count > paginator.per_page,
         }
         if 'request' in context: