mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 13:23:18 -07:00
match status for success and failed download. fixes #360
This commit is contained in:
parent
0fd1e832a1
commit
39bf06f358
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ class autoProcessTV:
|
||||||
for line in r.iter_lines():
|
for line in r.iter_lines():
|
||||||
if line:
|
if line:
|
||||||
logger.postprocess("%s" % (line), section)
|
logger.postprocess("%s" % (line), section)
|
||||||
if section == "SickBeard" and "Processing succeeded for" in line:
|
if section == "SickBeard" and "Processing succeeded" in line:
|
||||||
Success = True
|
Success = True
|
||||||
elif section == "NzbDrone" and "stateChangeTime" in line:
|
elif section == "NzbDrone" and "stateChangeTime" in line:
|
||||||
Success = True
|
Success = True
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue