diff options
| author | jvoisin | 2021-03-07 16:42:38 +0100 |
|---|---|---|
| committer | jvoisin | 2021-03-07 16:42:38 +0100 |
| commit | cd5f2eb71c97aa71d64dbeb7eb608314edb063a6 (patch) | |
| tree | 6085bf62cd1c8169e0a99ef559811b5f928356a9 /libmat2 | |
| parent | ec082d64833ed209d0bbec9ae5171e9378ffcb87 (diff) | |
Add a missing comma
This should improve epub support
Diffstat (limited to 'libmat2')
| -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): | |||
| 20 | 'OPS/.+.xml' | 20 | 'OPS/.+.xml' |
| 21 | })) | 21 | })) |
| 22 | self.files_to_omit = set(map(re.compile, { # type: ignore | 22 | self.files_to_omit = set(map(re.compile, { # type: ignore |
| 23 | 'iTunesMetadata.plist' | 23 | 'iTunesMetadata.plist', |
| 24 | 'META-INF/calibre_bookmarks.txt' | 24 | 'META-INF/calibre_bookmarks.txt', |
| 25 | })) | 25 | })) |
| 26 | self.uniqid = uuid.uuid4() | 26 | self.uniqid = uuid.uuid4() |
| 27 | 27 | ||
