mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	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:
		| @@ -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) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user