From 36f544b6d9455d0f2a4b2eb91ae3a762b558c3de Mon Sep 17 00:00:00 2001 From: evilhero Date: Fri, 11 Oct 2019 10:15:12 -0400 Subject: [PATCH] FIX: 'str' object error during post-processing runs --- mylar/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/updater.py b/mylar/updater.py index 57413c8f..75c2a1a8 100755 --- a/mylar/updater.py +++ b/mylar/updater.py @@ -916,7 +916,7 @@ def foundsearch(ComicID, IssueID, mode=None, down=None, provider=None, SARC=None newVal['year'] = pullinfo['year'] myDB.upsert("oneoffhistory", newVal, ctlVal) - logger.info('%s Updating Status (%s) now completed for %s issue: %s' (module, downstatus, ComicName, IssueNum)) + logger.info('%s Updating Status (%s) now completed for %s issue: %s' % (module, downstatus, ComicName, IssueNum)) return def forceRescan(ComicID, archive=None, module=None, recheck=False):