Update SickRage dir. Fixex clinton-hall/nzbToMedia#895

This commit is contained in:
Jeffrey Kriegsman 2015-12-04 08:09:17 +01:00
commit 198796e8b4
2 changed files with 3 additions and 3 deletions

View file

@ -56,8 +56,8 @@ FORK_SICKRAGE = "sickrage"
FORKS[FORK_DEFAULT] = {"dir": None}
FORKS[FORK_FAILED] = {"dirName": None, "failed": None}
FORKS[FORK_FAILED_TORRENT] = {"dir": None, "failed": None, "process_method": None}
FORKS[FORK_SICKRAGE] = {"dir": None, "failed": None, "process_method": None, "force": None, "delete_on": None}
ALL_FORKS = {"dir": None, "dirName": None, "failed": None, "process_method": None, "force": None, "delete_on": None}
FORKS[FORK_SICKRAGE] = {"proc_dir": None, "failed": None, "process_method": None, "force": None, "delete_on": None}
ALL_FORKS = {"dir": None, "dirName": None, "proc_dir": None, "failed": None, "process_method": None, "force": None, "delete_on": None}
SICKBEARD_FAILED = [FORK_FAILED, FORK_FAILED_TORRENT, FORK_SICKRAGE]
SICKBEARD_TORRENT = [FORK_FAILED_TORRENT, FORK_SICKRAGE]

View file

@ -200,7 +200,7 @@ class autoProcessTV:
if param == "failed":
fork_params[param] = failed
if param in ["dirName", "dir"]:
if param in ["dirName", "dir", "proc_dir"]:
fork_params[param] = dirName
if remote_path:
fork_params[param] = remoteDir(dirName)