mirror of https://github.com/evilhero/mylar
FIX: error being returned on manual post-processing runs due to some the changes in previous commits
This commit is contained in:
parent
c02c946f35
commit
2c5fc49c56
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue