diff --git a/sickbeard/providers/hdtorrents.py b/sickbeard/providers/hdtorrents.py index e011d010..a372a29e 100644 --- a/sickbeard/providers/hdtorrents.py +++ b/sickbeard/providers/hdtorrents.py @@ -199,7 +199,7 @@ class HDTorrentsProvider(generic.TorrentProvider): continue # Remove HDTorrents NEW list - split_data = data.partition('\n\n\n\n') + split_data = data.partition('\n\n\n\n') data = split_data[2] try: @@ -207,6 +207,10 @@ class HDTorrentsProvider(generic.TorrentProvider): #Get first entry in table entries = html.find_all('td', attrs={'align': 'center'}) + if html.find(text='No torrents here...'): + logger.log(u"No results found for: " + search_string + " (" + searchURL + ")", logger.DEBUG) + continue + if not entries: logger.log(u"The Data returned from " + self.name + " do not contains any torrent", logger.DEBUG)