Fix LookingForGroup
This commit is contained in:
parent
abe15dbffb
commit
1c99de91ae
1 changed files with 3 additions and 3 deletions
|
@ -198,12 +198,12 @@ class LoFiJinks(WordPressNaviIn):
|
||||||
endOfLife = True
|
endOfLife = True
|
||||||
|
|
||||||
|
|
||||||
class LookingForGroup(_ParserScraper):
|
class LookingForGroup(ParserScraper):
|
||||||
url = 'https://www.lfg.co/'
|
url = 'https://www.lfg.co/'
|
||||||
stripUrl = url + 'page/%s/'
|
stripUrl = url + 'page/%s/'
|
||||||
firstStripUrl = stripUrl % '1'
|
firstStripUrl = stripUrl % '1'
|
||||||
imageSearch = '//div[@id="comic-img"]//img'
|
imageSearch = '//div[@id="comic-img"]//img/@data-src'
|
||||||
prevSearch = '//a[@class="comic-nav-prev"]'
|
prevSearch = '//a[d:class("comic-nav-prev")]'
|
||||||
latestSearch = '//div[@id="feature-lfg-footer"]/a[contains(@href, "page/")]'
|
latestSearch = '//div[@id="feature-lfg-footer"]/a[contains(@href, "page/")]'
|
||||||
starter = indirectStarter
|
starter = indirectStarter
|
||||||
help = 'Index format: nnn'
|
help = 'Index format: nnn'
|
||||||
|
|
Loading…
Reference in a new issue