1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2025-03-15 08:18:44 +00:00

FIX: fix to allow for the file parser to adjust for filenames where the date is prior to the issue number

This commit is contained in:
evilhero 2019-08-05 14:50:45 -04:00
parent 15aadaaa23
commit d51ad541d1

View file

@ -800,7 +800,8 @@ class FileChecker(object):
yearposition = x['yearposition']
yearmodposition = x['yearmodposition']
if highest_series_pos > yearposition: highest_series_pos = yearposition #dc['position']: highest_series_pos = dc['position']
if yearposition is not None and highest_series_pos > yearposition:
highest_series_pos = yearposition #dc['position']: highest_series_pos = dc['position']
else:
issue_year = None
yearposition = None