X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/5400caf9e791572a0800ab69cc5af4044f98268e..ce18dec1f572a8f20540f838ea8daf4f90b44d8b:/bin/book2html.py diff --git a/bin/book2html.py b/bin/book2html.py index e68435974..f66117d5d 100755 --- a/bin/book2html.py +++ b/bin/book2html.py @@ -12,7 +12,8 @@ from lxml import etree def transform(input_filename, output_filename): """Transforms file input_filename in XML to output_filename in XHTML.""" # Parse XSLT - style = etree.parse('book2html.xslt') + style_filename = os.path.join(os.path.dirname(__file__), 'book2html.xslt') + style = etree.parse(style_filename) doc_file = cStringIO.StringIO() expr = re.compile(r'/\s', re.MULTILINE | re.UNICODE);