Fix GUComics
This commit is contained in:
parent
e38a766db3
commit
67af7bd115
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@ class Garanos(_BasicScraper):
|
|||
class GUComics(_BasicScraper):
|
||||
url = 'http://www.gucomics.com/comic/'
|
||||
stripUrl = url + '?cdate=%s'
|
||||
imageSearch = compile(r'<IMG src="(/comics/\d{4}/gu_.*?)"')
|
||||
prevSearch = compile(r'<A href="(/comic/\?cdate=\d+)"><IMG src="/images/cnav_prev')
|
||||
imageSearch = compile(tagre("img", "src", r'(/comics/\d{4}/gu_[^"]+)'))
|
||||
prevSearch = compile(tagre("a", "href", r'(/comic/\?cdate=\d+)') + '< Prev')
|
||||
help = 'Index format: yyyymmdd'
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue