mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-22 07:35:00 +02:00
Properly fix #581
This commit is contained in:
parent
457f622447
commit
1e680d7fda
1 changed files with 1 additions and 1 deletions
|
|
@ -184,7 +184,7 @@ def create_opf(self, htmlfile):
|
|||
manifest = [(htmlfile, 'text/x-oeb1-document')]
|
||||
bp = os.path.dirname(htmlfile)
|
||||
for i in self.image_names:
|
||||
manifest.append((os.path.join(bp,'images/',i), 'image/jpg'))
|
||||
manifest.append((os.path.join(bp, 'images/', i), 'image/jpg'))
|
||||
|
||||
opf.create_manifest(manifest)
|
||||
opf.create_spine([os.path.basename(htmlfile)])
|
||||
|
|
|
|||
Loading…
Reference in a new issue