Merge pull request #76 from jsafrit/master

Fix pattern for The Devils Panties
This commit is contained in:
Tobias Gruetzmacher 2017-01-10 22:48:04 +01:00
commit 0cefe90624

View file

@ -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'