mirror of
https://github.com/evilhero/mylar
synced 2025-02-02 12:31:44 +00:00
FIX: Incorrect error capture statement (commented out)
This commit is contained in:
parent
a412e672af
commit
37dcfcceba
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ def run(dirName, nzbName=None, issueid=None, comversion=None, manual=None, filen
|
||||||
try:
|
try:
|
||||||
ctversion = subprocess.check_output([sys.executable, comictagger_cmd, "--version"], stderr=subprocess.STDOUT)
|
ctversion = subprocess.check_output([sys.executable, comictagger_cmd, "--version"], stderr=subprocess.STDOUT)
|
||||||
except subprocess.CalledProcessError as e:
|
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.')
|
logger.warn(module + '[WARNING] Make sure that you have configparser installed.')
|
||||||
return "fail"
|
return "fail"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue