FIX: error being returned on manual post-processing runs due to some the changes in previous commits

This commit is contained in:
evilhero 2017-11-28 19:13:43 -05:00
parent c02c946f35
commit 2c5fc49c56
1 changed files with 1 additions and 1 deletions

View File

@ -905,7 +905,7 @@ class FileChecker(object):
series_name_decoded= unicodedata.normalize('NFKD', helpers.conversion(series_name)).encode('ASCII', 'ignore')
#check for annual in title(s) here.
if mylar.CONFIG.ANNUALS_ON and 'annual' not in self.watchcomic.lower():
if not self.justparse and mylar.CONFIG.ANNUALS_ON and 'annual' not in self.watchcomic.lower():
if 'annual' in series_name.lower():
issue_number = 'Annual ' + str(issue_number)
series_name = re.sub('annual', '', series_name, flags=re.I).strip()