Skip to content
Snippets Groups Projects
Commit c9d9cab9 authored by Mike Bayer's avatar Mike Bayer
Browse files

- changelog for [ticket:225]

parent 4d813cab
No related branches found
No related tags found
No related merge requests found
0.9.1 0.9.1
- [bug] Fixed bug in Babel plugin where translator comments
would be lost if intervening text nodes were encountered.
Fix courtesy Ned Batchelder. [ticket:225]
- [bug] Fixed TGPlugin.render method to support unicode template - [bug] Fixed TGPlugin.render method to support unicode template
names in Py2K - courtesy Vladimir Magamedov. names in Py2K - courtesy Vladimir Magamedov.
......
...@@ -13,8 +13,8 @@ import os ...@@ -13,8 +13,8 @@ import os
class ExtractMakoTestCase(TemplateTest): class ExtractMakoTestCase(TemplateTest):
@skip_if(lambda: not babel, 'babel not installed: skipping babelplugin test')
@skip_if(lambda: not babel, 'babel not installed: skipping babelplugin test')
def test_extract(self): def test_extract(self):
mako_tmpl = open(os.path.join(template_base, 'gettext.mako')) mako_tmpl = open(os.path.join(template_base, 'gettext.mako'))
messages = list(extract(mako_tmpl, {'_': None, 'gettext': None, messages = list(extract(mako_tmpl, {'_': None, 'gettext': None,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment