mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	Fixed #14589 -- Corrected a copy-and-paste error introduced in r14395. Thanks to Adam McKerlie for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14397 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -88,7 +88,7 @@ class DebugVariableNode(VariableNode): | ||||
|     def render(self, context): | ||||
|         try: | ||||
|             output = self.filter_expression.resolve(context) | ||||
|             output = localize(value, use_l10n=use_l10n) | ||||
|             output = localize(output, use_l10n=context.use_l10n) | ||||
|             output = force_unicode(output) | ||||
|         except TemplateSyntaxError, e: | ||||
|             if not hasattr(e, 'source'): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user