mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-31 12:00:04 -07:00
fixed error preventing running of script. fixes #201
This commit is contained in:
parent
65c7917947
commit
0cf947a0e4
1 changed files with 2 additions and 2 deletions
|
@ -291,11 +291,11 @@ def external_script(outputDestination):
|
||||||
try:
|
try:
|
||||||
p = Popen(command)
|
p = Popen(command)
|
||||||
res = p.wait()
|
res = p.wait()
|
||||||
if res in user_script_successCodes: Linux returns 0 for successful.
|
if res in user_script_successCodes: # Linux returns 0 for successful.
|
||||||
Logger.info("UserScript %s was successfull", command[0])
|
Logger.info("UserScript %s was successfull", command[0])
|
||||||
else:
|
else:
|
||||||
Logger.error("UserScript %s has failed with return code: %s", command[0], res)
|
Logger.error("UserScript %s has failed with return code: %s", command[0], res)
|
||||||
Logger.info("If the UserScript completed successfully you should add "%s" to the user_script_successCodes", res)
|
Logger.info("If the UserScript completed successfully you should add %s to the user_script_successCodes", res)
|
||||||
result = 1
|
result = 1
|
||||||
except:
|
except:
|
||||||
Logger.exception("UserScript %s has failed", command[0])
|
Logger.exception("UserScript %s has failed", command[0])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue