Merge pull request #489 from wzyboy/backports/pylzma

Support pylzma as a fallback
This commit is contained in:
Apprentice Harper
2018-05-05 18:36:55 +01:00
committed by GitHub
7 changed files with 36 additions and 15 deletions

View File

@@ -15,9 +15,9 @@ except ImportError:
from StringIO import StringIO
try:
import ion
except:
from calibre_plugins.dedrm import ion
except ImportError:
import ion
__license__ = 'GPL v3'