mirror of https://github.com/evilhero/mylar
FIX: fix for post-processing files that are TPB's but matches to non-TPB's series within watchlist
This commit is contained in:
parent
7e8025c5f6
commit
2cd1f876ee
|
@ -644,6 +644,10 @@ class PostProcessor(object):
|
|||
temploc = None
|
||||
datematch = "False"
|
||||
|
||||
if temploc is None and all([cs['WatchValues']['Type'] != 'TPB', cs['WatchValues']['Type'] != 'One-Shot']):
|
||||
logger.info('this should have an issue number to match to this particular series: %s' % cs['ComicID'])
|
||||
continue
|
||||
|
||||
if temploc is not None and (any(['annual' in temploc.lower(), 'special' in temploc.lower()]) and mylar.CONFIG.ANNUALS_ON is True):
|
||||
biannchk = re.sub('-', '', temploc.lower()).strip()
|
||||
if 'biannual' in biannchk:
|
||||
|
|
Loading…
Reference in New Issue