From 2c5fc49c56dfce9b0eabff88afc9ca16bf29ed1a Mon Sep 17 00:00:00 2001 From: evilhero Date: Tue, 28 Nov 2017 19:13:43 -0500 Subject: [PATCH] FIX: error being returned on manual post-processing runs due to some the changes in previous commits --- mylar/filechecker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/filechecker.py b/mylar/filechecker.py index 254799a6..52b0a620 100755 --- a/mylar/filechecker.py +++ b/mylar/filechecker.py @@ -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()