Private GIT

Skip to content
Snippets Groups Projects
Commit 356f857a authored by Dustyn Gibson's avatar Dustyn Gibson
Browse files

Fix typoe about multiresults in search.py, Fixes SiCKRAGETV/sickrage-issues#2554

parent 5770d33e
No related branches found
No related tags found
No related merge requests found
...@@ -593,8 +593,9 @@ def searchProviders(show, episodes, manualSearch=False, downCurQuality=False): ...@@ -593,8 +593,9 @@ def searchProviders(show, episodes, manualSearch=False, downCurQuality=False):
if MULTI_EP_RESULT in foundResults[curProvider.name]: if MULTI_EP_RESULT in foundResults[curProvider.name]:
for _multiResult in foundResults[curProvider.name][MULTI_EP_RESULT]: for _multiResult in foundResults[curProvider.name][MULTI_EP_RESULT]:
logger.log(u"Seeing if we want to bother with multi-episode result " + multiResult.name, logger.DEBUG) logger.log(u"Seeing if we want to bother with multi-episode result " + _multiResult.name, logger.DEBUG)
# Filter result by ignore/required/whitelist/blacklist/quality, etc
multiResult = pickBestResult(_multiResult, show) multiResult = pickBestResult(_multiResult, show)
if not multiResult: if not multiResult:
continue continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment