mirror of
https://github.com/apprenticeharper/DeDRM_tools
synced 2024-12-27 09:58:59 +01:00
Merge pull request #971 from cgaspar/master
Update lzma import to include calibre >= 4.6.0
This commit is contained in:
commit
5d8dc595ce
1 changed files with 12 additions and 7 deletions
|
@ -21,7 +21,12 @@ from Crypto.Cipher import AES
|
||||||
from Crypto.Util.py3compat import bchr, bord
|
from Crypto.Util.py3compat import bchr, bord
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# lzma library from calibre 4.6.0 or later
|
||||||
|
import calibre_lzma.lzma1 as calibre_lzma
|
||||||
|
except ImportError:
|
||||||
|
calibre_lzma = None
|
||||||
# lzma library from calibre 2.35.0 or later
|
# lzma library from calibre 2.35.0 or later
|
||||||
|
try:
|
||||||
import lzma.lzma1 as calibre_lzma
|
import lzma.lzma1 as calibre_lzma
|
||||||
except ImportError:
|
except ImportError:
|
||||||
calibre_lzma = None
|
calibre_lzma = None
|
||||||
|
|
Loading…
Reference in a new issue