Fix SleeplessDomain
This commit is contained in:
parent
d8ac47f386
commit
93dc03a429
1 changed files with 6 additions and 0 deletions
|
@ -270,6 +270,12 @@ class SkinDeep(_ParserScraper):
|
|||
|
||||
class SleeplessDomain(_ComicControlScraper):
|
||||
url = 'http://www.sleeplessdomain.com/'
|
||||
stripUrl = url + 'comic/%s'
|
||||
firstStripUrl = stripUrl % 'chapter-1-cover'
|
||||
starter = bounceStarter
|
||||
|
||||
def namer(self, imageUrl, pageUrl):
|
||||
return pageUrl.rsplit('/', 1)[-1] + '.' + imageUrl.rsplit('.', 1)[-1]
|
||||
|
||||
|
||||
class SlightlyDamned(_ComicControlScraper):
|
||||
|
|
Loading…
Reference in a new issue