From 3494d071b904460c17f82551c734c45bf3a7232d Mon Sep 17 00:00:00 2001 From: Anthony Snavely Date: Tue, 21 Oct 2014 21:57:43 -0700 Subject: [PATCH] Fix HD-Torrents Fix HD-Torrents so it works properly. --- sickbeard/providers/hdtorrents.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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)