mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-30 11:38:30 -07:00
Removed conflict logging
Turns out "failed" is passed as a string and then handled by the failed fork branch. Status here is used to determine what the actual state is, since "failed" will always be True. This script now treats the failed branch the same as the autoProcessTV from that branch.
This commit is contained in:
parent
ecdbca5c9b
commit
5c593b2d15
1 changed files with 2 additions and 5 deletions
|
@ -99,11 +99,8 @@ def processEpisode(dirName, nzbName=None, failed=False):
|
|||
if nzbName != None:
|
||||
params['nzbName'] = nzbName
|
||||
params['failed'] = failed
|
||||
if failed:
|
||||
if status:
|
||||
print "The download failed. Sending 'failed' process request to SickBeard's failed branch"
|
||||
else:
|
||||
print "The status indicates that downloading succeeded, but the parameter 'failed' is being passed as True"
|
||||
if status:
|
||||
print "The download failed. Sending 'failed' process request to SickBeard's failed branch"
|
||||
else:
|
||||
print "The download succeeded. Sending process request to SickBeard's failed branch"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue