diff --git a/sickbeard/providers/thepiratebay.py b/sickbeard/providers/thepiratebay.py index 1c1e285e..76f4f2c5 100644 --- a/sickbeard/providers/thepiratebay.py +++ b/sickbeard/providers/thepiratebay.py @@ -122,7 +122,9 @@ class ThePirateBayProvider(generic.TorrentProvider): filesList = re.findall('(.*?)', data) if not filesList: - logger.log(u"Unable to get the torrent file list for " + title, logger.ERROR) + # disabled errormsg for now + # logger.log(u"Unable to get the torrent file list for " + title, logger.ERROR) + return None videoFiles = filter(lambda x: x.rpartition(".")[2].lower() in mediaExtensions, filesList)