From 94ca5f245a20dfc5dfa53170a42e23dfa3949288 Mon Sep 17 00:00:00 2001 From: echel0n Date: Tue, 22 Apr 2014 20:39:00 -0700 Subject: [PATCH] Fix for dirName typo in autoProcessTV --- autoProcessMedia.cfg.spec | 2 ++ nzbtomedia/autoProcess/autoProcessTV.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/autoProcessMedia.cfg.spec b/autoProcessMedia.cfg.spec index 9fbfc49a..409a8e8c 100644 --- a/autoProcessMedia.cfg.spec +++ b/autoProcessMedia.cfg.spec @@ -163,6 +163,8 @@ extract = 1 # Set this to minimum required size to consider a media file valid (in MB) minSize = 0 + # Enable/Disable deleteing ignored files (samples and invalid media files) + delete_ignored = 0 ##### Set to path where completed downloads are found on remote server for this category remote_path = ##### Set to path where download client places completed downloads locally for this category diff --git a/nzbtomedia/autoProcess/autoProcessTV.py b/nzbtomedia/autoProcess/autoProcessTV.py index 3b869a00..7a42ad5c 100644 --- a/nzbtomedia/autoProcess/autoProcessTV.py +++ b/nzbtomedia/autoProcess/autoProcessTV.py @@ -99,7 +99,7 @@ class autoProcessTV: # configure SB params to pass fork_params['quiet'] = 1 if inputName is not None: - fork_params['inputName'] = inputName + fork_params['nzbName'] = inputName for param in copy.copy(fork_params): if param == "failed":