Use a diferent div class for GoComics (fixes #102).
This commit is contained in:
parent
9e2c6e0490
commit
1fe98d2f7f
1 changed files with 5 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
||||||
# Copyright (C) 2012-2014 Bastian Kleineidam
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
||||||
# Copyright (C) 2015-2017 Tobias Gruetzmacher
|
# Copyright (C) 2015-2018 Tobias Gruetzmacher
|
||||||
|
|
||||||
from __future__ import absolute_import, division, print_function
|
from __future__ import absolute_import, division, print_function
|
||||||
|
|
||||||
|
@ -11,10 +11,10 @@ from ..helpers import bounceStarter, xpath_class
|
||||||
|
|
||||||
class GoComics(_ParserScraper):
|
class GoComics(_ParserScraper):
|
||||||
url = 'http://www.gocomics.com/'
|
url = 'http://www.gocomics.com/'
|
||||||
imageSearch = '//picture[%s]/img' % xpath_class('item-comic-image')
|
imageSearch = '//picture[{0}]/img'.format(xpath_class('item-comic-image'))
|
||||||
navSearch = '//div[@class="button-icon-group"]//a[%s]'
|
navSearch = '//div[{0}]//a[{1}]'
|
||||||
prevSearch = navSearch % xpath_class('fa-caret-left')
|
prevSearch = navSearch.format(xpath_class('comic'), xpath_class('fa-caret-left'))
|
||||||
nextSearch = navSearch % xpath_class('fa-caret-right')
|
nextSearch = navSearch.format(xpath_class('comic'), xpath_class('fa-caret-right'))
|
||||||
starter = bounceStarter
|
starter = bounceStarter
|
||||||
help = 'Index format: yyyy/mm/dd'
|
help = 'Index format: yyyy/mm/dd'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue