Further fix for Django 1.10. 2.2.2
authorRadek Czajka <rczajka@rczajka.pl>
Fri, 15 Feb 2019 12:38:38 +0000 (13:38 +0100)
committerRadek Czajka <rczajka@rczajka.pl>
Fri, 15 Feb 2019 12:38:38 +0000 (13:38 +0100)
fnp_django_pagination/__init__.py
fnp_django_pagination/templatetags/pagination_tags.py

index c9d6c73..c6e0cfa 100644 (file)
@@ -34,4 +34,4 @@ tools throughout a django application.
 """
 
 
 """
 
 
-__version__ = (2, 2, 1, "final", 0)
+__version__ = (2, 2, 2, "final", 0)
index c56f44d..7f38da5 100644 (file)
@@ -195,8 +195,7 @@ class PaginateNode(Node):
         new_context = paginate(context)
         if self.template:
             template_list.insert(0, self.template)
         new_context = paginate(context)
         if self.template:
             template_list.insert(0, self.template)
-        with context.push(new_context):
-            return loader.render_to_string(template_list, context)
+        return loader.render_to_string(template_list, new_context)
 
 
 def do_paginate(parser, token):
 
 
 def do_paginate(parser, token):