Fix Spinnerette.
The old expression was matching "Previous issue" first and skipping all comics.
This commit is contained in:
parent
8117c5b132
commit
b32dc6fd40
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ class Spinnerette(_BasicScraper):
|
||||||
url = 'http://www.spinnyverse.com/'
|
url = 'http://www.spinnyverse.com/'
|
||||||
stripUrl = url + '%s/'
|
stripUrl = url + '%s/'
|
||||||
imageSearch = compile(tagre("img", "src", r'(http://www\.spinnyverse\.com/comics/[^"]+)'))
|
imageSearch = compile(tagre("img", "src", r'(http://www\.spinnyverse\.com/comics/[^"]+)'))
|
||||||
prevSearch = compile(tagre("a", "href", r'(http://www\.spinnyverse\.com/[^"]+)', before="Previous"))
|
prevSearch = compile(tagre("a", "href", r'(http://www\.spinnyverse\.com/[^"]+)', before="Previous Comic"))
|
||||||
help = 'Index format: number'
|
help = 'Index format: number'
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue