Fix for rarfile import on python3.5
This commit is contained in:
parent
b323fab55e
commit
7aa91ea95e
@ -1,3 +1,3 @@
|
||||
__author__ = 'dromanin'
|
||||
|
||||
__version__ = '2.1.1'
|
||||
__version__ = '2.1.2'
|
||||
|
@ -30,7 +30,7 @@ from natsort import natsorted
|
||||
try:
|
||||
import rarfile
|
||||
rarsupport = True
|
||||
except ImportError:
|
||||
except (ImportError, SyntaxError):
|
||||
rarsupport = False
|
||||
|
||||
import time
|
||||
|
Loading…
x
Reference in New Issue
Block a user