Skip to content

Commit ed167e3

Browse files
committed
Removed a bad import
1 parent 5f6099d commit ed167e3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

partial_load/loader.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
from django.template import loader, Context, RequestContext
33
from django.http import HttpResponse
44

5-
from django.template.base import SimpleNode
6-
75

86
class BlockNotFound(Exception):
97
pass
@@ -87,4 +85,5 @@ def direct_block_to_template(request, template, block_list, extra_context=None,
8785
c = RequestContext(request, dictionary)
8886
t = get_template(template)
8987
t.render(c)
88+
9089
return HttpResponse(render_template_blocks(t, block_list, c), mimetype=mimetype)

0 commit comments

Comments
 (0)