- changelog for [ticket:225]
diff --git a/CHANGES b/CHANGES
index eb30e38..4d54804 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,8 @@
 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
   names in Py2K - courtesy Vladimir Magamedov.
 
diff --git a/test/test_babelplugin.py b/test/test_babelplugin.py
index df2ed0f..023433d 100644
--- a/test/test_babelplugin.py
+++ b/test/test_babelplugin.py
@@ -13,8 +13,8 @@
 
 
 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):
         mako_tmpl = open(os.path.join(template_base, 'gettext.mako'))
         messages = list(extract(mako_tmpl, {'_': None, 'gettext': None,