Merge pull request #76 from jsafrit/master
Fix pattern for The Devils Panties
This commit is contained in:
commit
0cefe90624
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ class TheDevilsPanties(_BasicScraper):
|
||||||
url = 'http://thedevilspanties.com/'
|
url = 'http://thedevilspanties.com/'
|
||||||
stripUrl = url + 'archives/%s'
|
stripUrl = url + 'archives/%s'
|
||||||
firstStripUrl = stripUrl % '300'
|
firstStripUrl = stripUrl % '300'
|
||||||
imageSearch = compile(tagre("img", "src", r'(http://cdn\.thedevilspanties\.com/comics/[^"]+)'))
|
imageSearch = compile(tagre("img", "src", r'(http://origin\.thedevilspanties\.com/comics/[^"]+)'))
|
||||||
prevSearch = compile(tagre("a", "href", r'(/archives/\d+)',
|
prevSearch = compile(tagre("a", "href", r'(/archives/\d+)',
|
||||||
after="Previous"))
|
after="Previous"))
|
||||||
help = 'Index format: number'
|
help = 'Index format: number'
|
||||||
|
|
Loading…
Reference in a new issue