diff --git a/sickbeard/search.py b/sickbeard/search.py
index 18ee986252d1a1f804c64e7b5502756a831753e4..3969b457b502b48e7fa710b0b24c11e829f9d6ae 100644
--- a/sickbeard/search.py
+++ b/sickbeard/search.py
@@ -593,8 +593,9 @@ def searchProviders(show, episodes, manualSearch=False, downCurQuality=False):
         if MULTI_EP_RESULT in foundResults[curProvider.name]:
             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)
                 if not multiResult:
                     continue