From 37dcfcceba77ad06db7d17be32e5d0e48d933f73 Mon Sep 17 00:00:00 2001 From: evilhero Date: Tue, 2 Feb 2016 21:39:16 -0500 Subject: [PATCH] FIX: Incorrect error capture statement (commented out) --- mylar/cmtagmylar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/cmtagmylar.py b/mylar/cmtagmylar.py index 7b8e3613..33b489a3 100644 --- a/mylar/cmtagmylar.py +++ b/mylar/cmtagmylar.py @@ -143,7 +143,7 @@ def run(dirName, nzbName=None, issueid=None, comversion=None, manual=None, filen try: ctversion = subprocess.check_output([sys.executable, comictagger_cmd, "--version"], stderr=subprocess.STDOUT) except subprocess.CalledProcessError as e: - logger.warn(module + '[WARNING] "command '{}' return with error (code {}): {}".format(e.cmd, e.returncode, e.output)) + #logger.warn(module + "[WARNING] "command '{}' return with error (code {}): {}".format(e.cmd, e.returncode, e.output)) logger.warn(module + '[WARNING] Make sure that you have configparser installed.') return "fail"