FIX:(#2211) When post-processing issues with a vYEAR designation in the filename, would incorrectly attempt to do both vYEAR & vNumber comparisons resulting in a fail

This commit is contained in:
evilhero 2019-02-23 16:00:02 -05:00
parent 46df8bdff9
commit 45da4adec8
1 changed files with 1 additions and 1 deletions

View File

@ -781,7 +781,7 @@ class PostProcessor(object):
else:
logger.fdebug('%s[ISSUE-VERIFY][SeriesYear-Volume FAILURE] Series Year of %s DID NOT match to volume/year label of %s' % (module, watch_values['SeriesYear'], tmp_watchmatch_vol))
datematch = "False"
if len(watchvals) > 1 and int(tmp_watchmatch_vol) > 1:
elif len(watchvals) > 1 and int(tmp_watchmatch_vol) > 1:
if int(tmp_watchmatch_vol) == int(tmp_watchlist_vol):
logger.fdebug('%s[ISSUE-VERIFY][SeriesYear-Volume MATCH] Volume label of series Year of %s matched to volume label of %s' % (module, watch_values['ComicVersion'], watchmatch['series_volume']))
else: