mirror of
https://github.com/evilhero/mylar
synced 2025-02-01 12:07:50 +00:00
FIX: Hey O! Look what got fixed! :-)
This commit is contained in:
parent
45da4adec8
commit
71af02a923
1 changed files with 2 additions and 2 deletions
|
@ -781,7 +781,7 @@ class PostProcessor(object):
|
||||||
else:
|
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))
|
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"
|
datematch = "False"
|
||||||
elif 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):
|
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']))
|
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:
|
else:
|
||||||
|
@ -1148,7 +1148,7 @@ class PostProcessor(object):
|
||||||
else:
|
else:
|
||||||
logger.fdebug('%s[ARC ISSUE-VERIFY][SeriesYear-Volume FAILURE] Series Year of %s DID NOT match to volume/year label of %s' % (module, arc_values['SeriesYear'], tmp_arcmatch_vol))
|
logger.fdebug('%s[ARC ISSUE-VERIFY][SeriesYear-Volume FAILURE] Series Year of %s DID NOT match to volume/year label of %s' % (module, arc_values['SeriesYear'], tmp_arcmatch_vol))
|
||||||
datematch = "False"
|
datematch = "False"
|
||||||
if len(arcvals) > 1 and int(tmp_arcmatch_vol) > 1:
|
if len(arcvals) > 1 and int(tmp_arcmatch_vol) >= 1:
|
||||||
if int(tmp_arcmatch_vol) == int(tmp_arclist_vol):
|
if int(tmp_arcmatch_vol) == int(tmp_arclist_vol):
|
||||||
logger.fdebug('%s[ARC ISSUE-VERIFY][SeriesYear-Volume MATCH] Volume label of series Year of %s matched to volume label of %s' % (module, arc_values['ComicVersion'], arcmatch['series_volume']))
|
logger.fdebug('%s[ARC ISSUE-VERIFY][SeriesYear-Volume MATCH] Volume label of series Year of %s matched to volume label of %s' % (module, arc_values['ComicVersion'], arcmatch['series_volume']))
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue