mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-19 21:03:14 -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():
|
||||
if line:
|
||||
logger.postprocess("%s" % (line), section)
|
||||
if section == "SickBeard" and "Processing succeeded for" in line:
|
||||
if section == "SickBeard" and "Processing succeeded" in line:
|
||||
Success = True
|
||||
elif section == "NzbDrone" and "stateChangeTime" in line:
|
||||
Success = True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue