Changes between Version 2 and Version 3 of CookBookTemplateTags
- Timestamp:
- Feb 12, 2006, 7:04:24 AM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CookBookTemplateTags
v2 v3 22 22 def render(self, context): 23 23 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) 25 25 26 26