From e4741c909e3569c91a83168bae171fe692e20f66 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20St=C4=99pniowski?= Date: Thu, 9 Oct 2008 16:28:53 +0200 Subject: [PATCH] Removed debug statement from librarian.html.transform and changed check to search for p. --- lib/librarian/html.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/librarian/html.py b/lib/librarian/html.py index 6a4ad5e27..b279e5dd5 100644 --- a/lib/librarian/html.py +++ b/lib/librarian/html.py @@ -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') -- 2.20.1