Fixed eztv to work (#148)
Did 2 changes: a. Changed the url to https://eztv.it which works for all valid urls. b. Changed the code to work with new site settings.
This commit is contained in:
parent
be0715d099
commit
a02a35e4ec
|
|
@ -1,4 +1,4 @@
|
|||
#VERSION: 1.10
|
||||
#VERSION: 1.11
|
||||
# AUTHORS: nindogo
|
||||
# CONTRIBUTORS: Diego de las Heras (ngosang@hotmail.es)
|
||||
|
||||
|
|
@ -16,7 +16,7 @@ from helpers import retrieve_url
|
|||
|
||||
class eztv(object):
|
||||
name = "EZTV"
|
||||
url = 'https://eztv.io'
|
||||
url = 'https://eztv.it'
|
||||
supported_categories = {'all': 'all', 'tv': 'tv'}
|
||||
|
||||
class MyHtmlParser(HTMLParser):
|
||||
|
|
@ -33,7 +33,7 @@ class eztv(object):
|
|||
def handle_starttag(self, tag, attrs):
|
||||
params = dict(attrs)
|
||||
|
||||
if (params.get('class') == 'forum_header_border'
|
||||
if (params.get('class') == 'forum_header_border child'
|
||||
and params.get('name') == 'hover'):
|
||||
self.in_table_row = True
|
||||
self.current_item = {}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
eztv: 1.10
|
||||
eztv: 1.11
|
||||
jackett: 3.4
|
||||
leetx: 2.2
|
||||
legittorrents: 2.4
|
||||
|
|
|
|||
Loading…
Reference in New Issue