Commit 20e09ca8 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #14589 -- Corrected a copy-and-paste error introduced in r14395. Thanks...

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
parent bc6d7d21
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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'):