fix spurious None
authorCarl Meyer <carl@oddbird.net>
Wed, 3 Mar 2010 21:57:04 +0000 (16:57 -0500)
committerCarl Meyer <carl@oddbird.net>
Wed, 3 Mar 2010 21:57:04 +0000 (16:57 -0500)
pagination/templatetags/pagination_tags.py

index fa8fd48..bb9978d 100644 (file)
@@ -104,7 +104,7 @@ class AutoPaginateNode(template.Node):
         context['page_obj'] = page_obj
         return u''
 
-def paginate(context, window=DEFAULT_WINDOW, hashtag=None):
+def paginate(context, window=DEFAULT_WINDOW, hashtag=''):
     """
     Renders the ``pagination/pagination.html`` template, resulting in a
     Digg-like display of the available pages, given the current page.  If there