diff options
| author | jvoisin <julien.voisin@dustri.org> | 2021-03-07 16:42:38 +0100 |
|---|---|---|
| committer | jvoisin <julien.voisin@dustri.org> | 2021-03-07 16:42:38 +0100 |
| commit | cd5f2eb71c97aa71d64dbeb7eb608314edb063a6 (patch) | |
| tree | 6085bf62cd1c8169e0a99ef559811b5f928356a9 | |
| parent | ec082d64833ed209d0bbec9ae5171e9378ffcb87 (diff) | |
| download | external_mat2-cd5f2eb71c97aa71d64dbeb7eb608314edb063a6.tar.gz external_mat2-cd5f2eb71c97aa71d64dbeb7eb608314edb063a6.tar.bz2 external_mat2-cd5f2eb71c97aa71d64dbeb7eb608314edb063a6.zip | |
Add a missing comma
This should improve epub support
| -rw-r--r-- | libmat2/epub.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmat2/epub.py b/libmat2/epub.py index 52fab1c..9db4618 100644 --- a/libmat2/epub.py +++ b/libmat2/epub.py @@ -20,8 +20,8 @@ class EPUBParser(archive.ZipParser): 'OPS/.+.xml' })) self.files_to_omit = set(map(re.compile, { # type: ignore - 'iTunesMetadata.plist' - 'META-INF/calibre_bookmarks.txt' + 'iTunesMetadata.plist', + 'META-INF/calibre_bookmarks.txt', })) self.uniqid = uuid.uuid4() |
