Fixed bug in [1443] -- renamed compile_filters call to compile_filter

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1445 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-11-26 23:10:09 +00:00
parent ac91a22ec2
commit adef71d2c4
1 changed files with 1 additions and 1 deletions

View File

@ -717,7 +717,7 @@ def regroup(parser, token):
if lastbits_reversed[1][::-1] != 'as':
raise TemplateSyntaxError, "next-to-last argument to 'regroup' tag must be 'as'"
expression = parser.compile_filters('var.%s' % lastbits_reversed[2][::-1])
expression = parser.compile_filter('var.%s' % lastbits_reversed[2][::-1])
var_name = lastbits_reversed[0][::-1]
return RegroupNode(target, expression, var_name)