mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 03:45:01 -05:00
Merge branch 'hotfix/0.2.1'
This commit is contained in:
commit
0a362e81dd
@ -1,3 +1,9 @@
|
||||
### 0.2.1 (2014-10-22 06:41:00 UTC)
|
||||
|
||||
[full changelog](https://github.com/SickragePVR/SickRage/compare/release_0.2.0...release_0.2.1)
|
||||
|
||||
* Fix HDtorrents provider screen scraping
|
||||
|
||||
### 0.2.0 (2014-10-21 12:36:50 UTC)
|
||||
|
||||
[full changelog](https://github.com/SickragePVR/SickRage/compare/release_0.1.0...release_0.2.0)
|
||||
|
@ -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