mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
GwR patch for missing OPF
This commit is contained in:
parent
79249a8429
commit
1c5efc3d1c
@ -163,6 +163,8 @@ class ITUNES(DriverBase):
|
|||||||
settings()
|
settings()
|
||||||
set_progress_reporter()
|
set_progress_reporter()
|
||||||
upload_books()
|
upload_books()
|
||||||
|
_get_fpath()
|
||||||
|
_update_epub_metadata()
|
||||||
add_books_to_metadata()
|
add_books_to_metadata()
|
||||||
use_plugboard_ext()
|
use_plugboard_ext()
|
||||||
set_plugboard()
|
set_plugboard()
|
||||||
@ -2621,13 +2623,13 @@ class ITUNES(DriverBase):
|
|||||||
# Touch the OPF timestamp
|
# Touch the OPF timestamp
|
||||||
try:
|
try:
|
||||||
zf_opf = ZipFile(fpath,'r')
|
zf_opf = ZipFile(fpath,'r')
|
||||||
|
fnames = zf_opf.namelist()
|
||||||
|
opf = [x for x in fnames if '.opf' in x][0]
|
||||||
except:
|
except:
|
||||||
raise UserFeedback("'%s' is not a valid EPUB" % metadata.title,
|
raise UserFeedback("'%s' is not a valid EPUB" % metadata.title,
|
||||||
None,
|
None,
|
||||||
level=UserFeedback.WARN)
|
level=UserFeedback.WARN)
|
||||||
fnames = zf_opf.namelist()
|
|
||||||
opf = [x for x in fnames if '.opf' in x][0]
|
|
||||||
if opf:
|
|
||||||
opf_tree = etree.fromstring(zf_opf.read(opf))
|
opf_tree = etree.fromstring(zf_opf.read(opf))
|
||||||
md_els = opf_tree.xpath('.//*[local-name()="metadata"]')
|
md_els = opf_tree.xpath('.//*[local-name()="metadata"]')
|
||||||
if md_els:
|
if md_els:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user