Bugfix :: autoProcessTV.py : Typo in parameter name which leads to a 404 page when attempting to process without failed fork.

This commit is contained in:
Bo Osterud 2013-02-21 19:48:07 +01:00
commit 00814f0a8e

View file

@ -110,7 +110,7 @@ def processEpisode(dirName, nzbName=None, failed=False):
# this is our default behaviour to work with the standard Master branch of SickBeard # this is our default behaviour to work with the standard Master branch of SickBeard
else: else:
params['dir'] = dirName params['dirName'] = dirName
if nzbName != None: if nzbName != None:
params['nzbName'] = nzbName params['nzbName'] = nzbName
# the standard Master bamch of SickBeard cannot process failed downloads. So Exit here. # the standard Master bamch of SickBeard cannot process failed downloads. So Exit here.