Fix DorkTower image regex.
This commit is contained in:
parent
aca3c959af
commit
52ee7228ef
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ class DorkTower(_BasicScraper):
|
||||||
rurl = escape(url)
|
rurl = escape(url)
|
||||||
stripUrl = url + '%s/'
|
stripUrl = url + '%s/'
|
||||||
firstStripUrl = stripUrl % '1997/01/01/shadis-magazine-strip-1'
|
firstStripUrl = stripUrl % '1997/01/01/shadis-magazine-strip-1'
|
||||||
imageSearch = compile(tagre("img", "src", r'(%sfiles/\d+/\d+/DorkTower[^"]+)' % rurl))
|
imageSearch = compile(tagre("img", "src", r'(%sfiles/\d+/\d+/[^"]+\.gif)' % rurl))
|
||||||
prevSearch = compile(tagre("a", "href", r'(%s[^"]+)' % rurl)+"Previous")
|
prevSearch = compile(tagre("a", "href", r'(%s[^"]+)' % rurl)+"Previous")
|
||||||
help = 'Index format: yyyy/mm/dd/stripname-dd-mm-yy'
|
help = 'Index format: yyyy/mm/dd/stripname-dd-mm-yy'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue