From c64d3d594ebd545799638932fb9442c2a432c66c Mon Sep 17 00:00:00 2001 From: evilhero Date: Thu, 14 Mar 2019 15:39:29 -0400 Subject: [PATCH] FIX:(#2238) Fix for incorrect variable reference IssueID --- mylar/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/updater.py b/mylar/updater.py index fa6c6383..b69de40e 100755 --- a/mylar/updater.py +++ b/mylar/updater.py @@ -1642,7 +1642,7 @@ def totals(ComicID, havefiles=None, totalfiles=None, module=None, issueid=None, if totalfiles == 1: havefiles = 1 else: - logger.warn('Total issues for this series [ComiciD:%s/IssueID:%] is not 1 when it should be. This is probably a mistake and the series should be refreshed.' % (ComicID, IssueID)) + logger.warn('Total issues for this series [ComiciD:%s/IssueID:%] is not 1 when it should be. This is probably a mistake and the series should be refreshed.' % (ComicID, issueid)) havefiles = 0 logger.fdebug('incremented havefiles: %s' % havefiles) else: