Fix for rarfile import on python3.5

This commit is contained in:
Ozzieisaacs 2020-11-30 18:34:09 +01:00
parent b323fab55e
commit 7aa91ea95e
3 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,3 @@
__author__ = 'dromanin'
__version__ = '2.1.1'
__version__ = '2.1.2'

View File

@ -30,7 +30,7 @@ from natsort import natsorted
try:
import rarfile
rarsupport = True
except ImportError:
except (ImportError, SyntaxError):
rarsupport = False
import time

View File

@ -1,7 +1,7 @@
from setuptools import setup
setup(
name = 'comicapi',
version = '2.1.1',
version = '2.1.2',
description = 'Comic archive (cbr/cbz/cbt) and metadata utilities. Extracted from the comictagger project.',
author = 'Iris W',
packages = ['comicapi'],