Commit 6ad56a08 authored by Ozzieisaacs's avatar Ozzieisaacs

Merge branch 'master' into Develop

parents 9afdab8c 85157815
......@@ -55,7 +55,7 @@ feature_support = {
try:
import rarfile
feature_support['rar'] = True
except ImportError:
except (ImportError, SyntaxError):
feature_support['rar'] = False
try:
......
......@@ -38,7 +38,7 @@ try:
use_comic_meta = True
try:
from comicapi import __version__ as comic_version
except (ImportError):
except ImportError:
comic_version = ''
except (ImportError, LookupError) as e:
log.debug('Cannot import comicapi, extracting comic metadata will not work: %s', e)
......@@ -47,7 +47,7 @@ except (ImportError, LookupError) as e:
try:
import rarfile
use_rarfile = True
except ImportError as e:
except (ImportError, SyntaxError) as e:
log.debug('Cannot import rarfile, extracting cover files from rar files will not work: %s', e)
use_rarfile = False
use_comic_meta = False
......
......@@ -31,7 +31,7 @@ rarfile>=2.7
# other
natsort>=2.2.0,<7.1.0
git+https://github.com/OzzieIsaacs/comicapi.git@b323fab55e7daba97f90bf59a4bc8de9d9c0a86b#egg=comicapi
git+https://github.com/OzzieIsaacs/comicapi.git@7aa91ea95ea7a919df6c6cac817865434a31c228#egg=comicapi
#Kobo integration
jsonschema>=3.2.0,<3.3.0
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment