Fix Draconia (fixes #150)
This commit is contained in:
parent
ec3d0509ef
commit
9fb1fccd08
3 changed files with 7 additions and 1 deletions
|
@ -273,6 +273,12 @@ class DoomsdayMyDear(_ParserScraper):
|
|||
prevSearch = '//a[{}]'.format(xpath_class('previous-webcomic-link'))
|
||||
|
||||
|
||||
class Draconia(_WPWebcomic):
|
||||
url = 'https://www.draconiachronicles.com/'
|
||||
stripUrl = url + 'comic/%s/'
|
||||
firstStripUrl = stripUrl % 'chapter-1-page-1'
|
||||
|
||||
|
||||
class Dracula(_BasicScraper):
|
||||
url = 'http://draculacomic.net/'
|
||||
stripUrl = url + 'comic.php?comicID=%s'
|
||||
|
|
|
@ -756,4 +756,5 @@ class Renamed(Scraper):
|
|||
cls('ZebraGirl', 'ComicFury/ZebraGirl'),
|
||||
|
||||
# Renamed in 3.0
|
||||
cls('StudioKhimera/Draconia', 'Draconia'),
|
||||
)
|
||||
|
|
|
@ -55,7 +55,6 @@ class StudioKhimera(_ParserScraper):
|
|||
@classmethod
|
||||
def getmodules(cls):
|
||||
return (
|
||||
cls('Draconia', 'thedraconiachronicles', adult=True),
|
||||
cls('Eorah', 'eorah'),
|
||||
cls('Mousechievous', 'mousechievous'),
|
||||
cls('UberQuest', 'uberquest'),
|
||||
|
|
Loading…
Reference in a new issue