Fix NineToNine, SwordsAndSausages, and CollegeCatastrophe
This commit is contained in:
parent
0fc196eb3e
commit
1a690bdeaf
3 changed files with 3 additions and 3 deletions
|
@ -286,7 +286,7 @@ class CollegeCatastrophe(_ParserScraper):
|
||||||
stripUrl = url + '/%s'
|
stripUrl = url + '/%s'
|
||||||
firstStripUrl = stripUrl % '2000-11-10'
|
firstStripUrl = stripUrl % '2000-11-10'
|
||||||
imageSearch = '//img[@class="comic-image"]'
|
imageSearch = '//img[@class="comic-image"]'
|
||||||
prevSearch = '//a[span[contains(text(),"Previous")]]'
|
prevSearch = '//a[./span[contains(text(), "Previous")]]'
|
||||||
endOfLife = True
|
endOfLife = True
|
||||||
multipleImagesPerStrip = True
|
multipleImagesPerStrip = True
|
||||||
|
|
||||||
|
|
|
@ -153,7 +153,7 @@ class NineToNine(_ParserScraper):
|
||||||
stripUrl = url + '/%s'
|
stripUrl = url + '/%s'
|
||||||
firstStripUrl = stripUrl % '2014-01-01'
|
firstStripUrl = stripUrl % '2014-01-01'
|
||||||
imageSearch = '//img[@class="comic-image"]'
|
imageSearch = '//img[@class="comic-image"]'
|
||||||
prevSearch = '//a[@class="prev"]'
|
prevSearch = '//a[./span[contains(text(), "Previous")]]'
|
||||||
multipleImagesPerStrip = True
|
multipleImagesPerStrip = True
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -702,5 +702,5 @@ class SwordsAndSausages(_ParserScraper):
|
||||||
stripUrl = url + '/%s'
|
stripUrl = url + '/%s'
|
||||||
firstStripUrl = stripUrl % '1-1'
|
firstStripUrl = stripUrl % '1-1'
|
||||||
imageSearch = '//img[@class="comic-image"]'
|
imageSearch = '//img[@class="comic-image"]'
|
||||||
prevSearch = '//a[@class="prev"]'
|
prevSearch = '//a[./span[contains(text(), "Previous")]]'
|
||||||
multipleImagesPerStrip = True
|
multipleImagesPerStrip = True
|
||||||
|
|
Loading…
Reference in a new issue