From 219f4c632fbf98f8b337068af1e3f195797ac728 Mon Sep 17 00:00:00 2001 From: John Schember Date: Mon, 14 Oct 2013 20:13:14 -0400 Subject: [PATCH] Fix issue #1239530: Htmlz conversion places in , not before. --- src/calibre/ebooks/htmlz/oeb2html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/ebooks/htmlz/oeb2html.py b/src/calibre/ebooks/htmlz/oeb2html.py index 820f6e5839..e9ebd676a0 100644 --- a/src/calibre/ebooks/htmlz/oeb2html.py +++ b/src/calibre/ebooks/htmlz/oeb2html.py @@ -49,7 +49,7 @@ class OEB2HTML(object): return self.mlize_spine(oeb_book) def mlize_spine(self, oeb_book): - output = [u''] + output = [u''] for item in oeb_book.spine: self.log.debug('Converting %s to HTML...' % item.href) self.rewrite_ids(item.data, item)