From 51fd4fb2fd2747e8e0fe97001cbe1cc585b782c2 Mon Sep 17 00:00:00 2001 From: evilhero Date: Sat, 21 Jul 2018 13:15:14 -0400 Subject: [PATCH] FIX:(#2024) Annuals were not being recognized when performing a Recheck Files regardless of format being used --- mylar/updater.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mylar/updater.py b/mylar/updater.py index e55c04d2..bb85372b 100755 --- a/mylar/updater.py +++ b/mylar/updater.py @@ -1242,7 +1242,8 @@ def forceRescan(ComicID, archive=None, module=None, recheck=False): old_status = reann['Status'] fcdigit = helpers.issuedigits(re.sub('annual', '', temploc.lower()).strip()) - fcdigit = helpers.issuedigits(re.sub('special', '', temploc.lower()).strip()) + if fcdigit == 999999999999999: + fcdigit = helpers.issuedigits(re.sub('special', '', temploc.lower()).strip()) if int(fcdigit) == int_iss and ANNComicID is not None: logger.fdebug(module + ' [' + str(ANNComicID) + '] Annual match - issue : ' + str(int_iss))