Fix TheGamerCat
This commit is contained in:
parent
1b8c404a15
commit
b6f2000c0b
1 changed files with 5 additions and 6 deletions
|
@ -54,12 +54,11 @@ class TheDreamlandChronicles(_WordPressScraper):
|
|||
|
||||
|
||||
class TheGamerCat(_ParserScraper):
|
||||
url = "http://www.thegamercat.com/"
|
||||
stripUrl = url + "comic/%s/"
|
||||
firstStripUrl = stripUrl % "06102011"
|
||||
css = True
|
||||
imageSearch = '#comic img'
|
||||
prevSearch = '.comic-nav-previous'
|
||||
url = 'https://thegamercat.com/'
|
||||
stripUrl = url + 'comic/%s/'
|
||||
firstStripUrl = stripUrl % '06102011'
|
||||
imageSearch = '//div[@id="comic"]//img'
|
||||
prevSearch = '//a[contains(@class, "comic-nav-previous")]'
|
||||
help = 'Index format: stripname'
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue