diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 0bccd77c44..d49f97f48e 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -2,7 +2,7 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __docformat__ = 'restructuredtext en' __appname__ = 'calibre' -__version__ = '0.4.115' +__version__ = '0.4.116' __author__ = "Kovid Goyal " ''' Various run time constants. diff --git a/src/calibre/ebooks/lit/writer.py b/src/calibre/ebooks/lit/writer.py index 8e2f93f845..f824e6aac3 100644 --- a/src/calibre/ebooks/lit/writer.py +++ b/src/calibre/ebooks/lit/writer.py @@ -731,7 +731,7 @@ def oeb2lit(opts, opfpath): litpath = os.path.basename(opfpath) litpath = os.path.splitext(litpath)[0] + '.lit' litpath = os.path.abspath(litpath) - lit = LitWriter(OEBBook(opfpath)) + lit = LitWriter(OEBBook(opfpath, logger=logger), logger=logger) with open(litpath, 'wb') as f: lit.dump(f) logger.log_info(_('Output written to ')+litpath)