Commit db0fe9a7 authored by Ozzieisaacs's avatar Ozzieisaacs

Fix for #1474 (old comicapi with installed unrar, but missing unrar-lib)

parent fdf10e3d
......@@ -40,7 +40,7 @@ try:
from comicapi import __version__ as comic_version
except (ImportError):
comic_version = ''
except ImportError as e:
except (ImportError, LookupError) as e:
log.debug('Cannot import comicapi, extracting comic metadata will not work: %s', e)
import zipfile
import tarfile
......
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