From e273c937b857fa8c3ade1c2ce271a4a964010905 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 10 Oct 2008 18:39:48 -0700 Subject: [PATCH] version 0.4.95 --- src/calibre/constants.py | 2 +- src/calibre/ebooks/epub/from_any.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/constants.py b/src/calibre/constants.py index dd89730038..49ce76257d 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.94' +__version__ = '0.4.95' __author__ = "Kovid Goyal " ''' Various run time constants. diff --git a/src/calibre/ebooks/epub/from_any.py b/src/calibre/ebooks/epub/from_any.py index b6d7fbc3db..d86174f514 100644 --- a/src/calibre/ebooks/epub/from_any.py +++ b/src/calibre/ebooks/epub/from_any.py @@ -71,6 +71,7 @@ def pdf2opf(path, tdir, opts): def epub2opf(path, tdir, opts): zf = ZipFile(path) zf.extractall(tdir) + opts.chapter_mark = 'none' if os.path.exists(os.path.join(tdir, 'META-INF', 'encryption.xml')): raise DRMError(os.path.basename(path)) for f in walk(tdir):