Fix ButtercupFestival
This commit is contained in:
parent
dc41c318e9
commit
e4f1f59432
1 changed files with 4 additions and 2 deletions
|
@ -295,8 +295,10 @@ class ButtercupFestival(_ParserScraper):
|
|||
stripUrl = url + '%s.htm'
|
||||
firstStripUrl = stripUrl % '2-1'
|
||||
imageSearch = '//center/img'
|
||||
prevSearch = '//a[text()="previous"]'
|
||||
help = 'Index format: 2-number'
|
||||
prevSearch = (
|
||||
'//a[img[contains(@src, "previous")]]', # 3-x
|
||||
'//a[text()="previous"]' # 2-x
|
||||
)
|
||||
|
||||
|
||||
class ButternutSquash(_BasicScraper):
|
||||
|
|
Loading…
Reference in a new issue