Ticket #14589: fix_changeset_14395.patch

File fix_changeset_14395.patch, 517 bytes (added by Adam Mckerlie <adammckerlie@…>, 13 years ago)

Patch that fixes the issues.

  • debug.py

     
    8888    def render(self, context):
    8989        try:
    9090            output = self.filter_expression.resolve(context)
    91             output = localize(value, use_l10n=use_l10n)
     91            output = localize(output, use_l10n=context.use_l10n)
    9292            output = force_unicode(output)
    9393        except TemplateSyntaxError, e:
    9494            if not hasattr(e, 'source'):
Back to Top