From 651e71082eeae643edae6255ec810acd4a252c45 Mon Sep 17 00:00:00 2001 From: echel0n Date: Mon, 12 May 2014 12:08:52 -0700 Subject: [PATCH] Fix for season pack searches ... ALL PROVIDERS! --- sickbeard/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sickbeard/search.py b/sickbeard/search.py index 337112a9..dee81d41 100644 --- a/sickbeard/search.py +++ b/sickbeard/search.py @@ -344,7 +344,7 @@ def searchProviders(queueItem, show, season, episodes, seasonSearch=False, manua # pick the best season NZB bestSeasonNZB = None if SEASON_RESULT in foundResults: - bestSeasonNZB = pickBestResult(foundResults[SEASON_RESULT], show, anyQualities + bestQualities) + bestSeasonNZB = pickBestResult(foundResults[provider.name][SEASON_RESULT], show, anyQualities + bestQualities) highest_quality_overall = 0 for cur_episode in foundResults[provider.name]: