Skip to content
Snippets Groups Projects
Commit cd5f2eb7 authored by Julien (jvoisin) Voisin's avatar Julien (jvoisin) Voisin
Browse files

Add a missing comma

This should improve epub support
parent ec082d64
No related branches found
No related tags found
No related merge requests found
...@@ -20,8 +20,8 @@ class EPUBParser(archive.ZipParser): ...@@ -20,8 +20,8 @@ class EPUBParser(archive.ZipParser):
'OPS/.+.xml' 'OPS/.+.xml'
})) }))
self.files_to_omit = set(map(re.compile, { # type: ignore self.files_to_omit = set(map(re.compile, { # type: ignore
'iTunesMetadata.plist' 'iTunesMetadata.plist',
'META-INF/calibre_bookmarks.txt' 'META-INF/calibre_bookmarks.txt',
})) }))
self.uniqid = uuid.uuid4() self.uniqid = uuid.uuid4()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment