mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-16 22:35:03 -05:00
Fix HD-Torrents
Fix HD-Torrents so it works properly.
This commit is contained in:
parent
262c2e8e8c
commit
3494d071b9
@ -199,7 +199,7 @@ class HDTorrentsProvider(generic.TorrentProvider):
|
||||
continue
|
||||
|
||||
# Remove HDTorrents NEW list
|
||||
split_data = data.partition('<!-- show New Torrents After Last Visit -->\n\n\n\n')
|
||||
split_data = data.partition('<!-- Show New Torrents After Last Visit -->\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)
|
||||
|
Loading…
Reference in New Issue
Block a user