1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2024-12-22 15:52:47 +00:00

FIX: fix for file parser error when parsing filename in which series contain numerics and was a special volume

This commit is contained in:
evilhero 2019-05-04 10:45:23 -04:00
parent 224c354c99
commit d340026502

View file

@ -790,6 +790,7 @@ class FileChecker(object):
yearposition = possible_years[0]['yearposition'] yearposition = possible_years[0]['yearposition']
yearmodposition = possible_years[0]['yearmodposition'] yearmodposition = possible_years[0]['yearmodposition']
else: else:
if len(possible_issuenumbers) > 0:
for x in possible_years: for x in possible_years:
logger.info('yearposition[%s] -- dc[position][%s]' % (yearposition, x['yearposition'])) logger.info('yearposition[%s] -- dc[position][%s]' % (yearposition, x['yearposition']))
if yearposition < x['yearposition']: if yearposition < x['yearposition']: