Changes between Version 2 and Version 3 of CookBookTemplateTags


Ignore:
Timestamp:
Feb 12, 2006, 7:04:24 AM (18 years ago)
Author:
g.brandl-nospam@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CookBookTemplateTags

    v2 v3  
    2222    def render(self, context):
    2323        output = self.nodelist.render(context)
    24         return transl.sub(lambda match: translation(match.group(1)), output)
     24        return transl.sub(lambda match: translation.gettext(match.group(1)), output)
    2525
    2626
Back to Top