From dd9b2a6503e19d1428a54a7bb69c8fe861231d77 Mon Sep 17 00:00:00 2001 From: echel0n Date: Wed, 2 Apr 2014 04:49:19 -0700 Subject: [PATCH] Fixed bug in autoProcessTV related to manual run --- autoProcess/autoProcessTV.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoProcess/autoProcessTV.py b/autoProcess/autoProcessTV.py index 09a7b0a1..713a3727 100644 --- a/autoProcess/autoProcessTV.py +++ b/autoProcess/autoProcessTV.py @@ -127,7 +127,7 @@ def processEpisode(dirName, nzbName=None, failed=False, clientAgent = "manual", # auto-detect fork type fork, params = autoFork() - if fork not in SICKBEARD_TORRENT or (clientAgent in ['nzbget','sabnzbd'] and nzbExtractionBy != "Destination"): + if nzbName and fork not in SICKBEARD_TORRENT or (clientAgent in ['nzbget','sabnzbd'] and nzbExtractionBy != "Destination"): process_all_exceptions(nzbName.lower(), dirName) nzbName, dirName = convert_to_ascii(nzbName, dirName)