Add missing url variable.
This commit is contained in:
parent
a90875f018
commit
af9d8e90f0
1 changed files with 2 additions and 1 deletions
|
@ -102,11 +102,12 @@ class FunInJammies(_BasicScraper):
|
|||
|
||||
|
||||
class Fallen(_BasicScraper):
|
||||
url = 'http://www.fallencomic.com/fal-page.htm'
|
||||
stripUrl = 'http://www.fallencomic.com/pages/part%s/%s-p%s.htm'
|
||||
imageSearch = compile(r'<IMG SRC="(page/.+?)"', IGNORECASE)
|
||||
prevSearch = compile(r'<A HREF="(.+?)"><FONT FACE="Courier">Back', IGNORECASE)
|
||||
help = 'Index format: nn-m (comicNumber-partNumber)'
|
||||
starter = indirectStarter('http://www.fallencomic.com/fal-page.htm',
|
||||
starter = indirectStarter(url,
|
||||
compile(r'\(NEW \d{2}/\d{2}/\d{2}\)\s*\n*\s*<a href="(pages/part\d+/\d+-p\d+\.htm)">\d+</a>', MULTILINE))
|
||||
|
||||
@classmethod
|
||||
|
|
Loading…
Reference in a new issue