Removed debug statement from librarian.html.transform and changed check to search...
authorMarek Stępniowski <marek@stepniowski.com>
Thu, 9 Oct 2008 14:28:53 +0000 (16:28 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Thu, 9 Oct 2008 14:28:53 +0000 (16:28 +0200)
lib/librarian/html.py

index 6a4ad5e..b279e5d 100644 (file)
@@ -53,8 +53,7 @@ def transform(input_filename, output_filename):
     doc = etree.parse(doc_file, parser)
 
     result = doc.xslt(style)
-    print result
-    if result.find('//div') is not None:
+    if result.find('//p') is not None:
         add_anchors(result.getroot())
         add_table_of_contents(result.getroot())
         result.write(output_filename, xml_declaration=False, pretty_print=True, encoding='utf-8')