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:
clinton-hall 2012-12-16 14:47:40 -08:00
parent ecdbca5c9b
commit 5c593b2d15

View file

@ -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"