This commit is contained in:
Kovid Goyal 2012-05-01 09:48:27 +05:30
parent ed2e2f1b87
commit 71f3dad296
2 changed files with 2 additions and 1 deletions

View File

@ -280,6 +280,7 @@ class AZW3Output(OutputFormatPlugin):
from calibre.ebooks.mobi.writer8.main import create_kf8_book
self.oeb, self.opts, self.log = oeb, opts, log
opts.mobi_periodical = self.is_periodical
resources = Resources(self.oeb, self.opts, self.is_periodical,
add_fonts=True, process_images=False)

View File

@ -23,7 +23,7 @@ class Resources(object):
process_images=True):
self.oeb, self.log, self.opts = oeb, oeb.log, opts
self.is_periodical = is_periodical
self.process_images = True
self.process_images = process_images
self.item_map = {}
self.records = []