Fix imageSearch pattern.
This commit is contained in:
parent
4448fe4489
commit
77f3d152c0
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ from ..util import tagre
|
|||
class TheBrads(_BasicScraper):
|
||||
url = 'http://bradcolbow.com/archive/C4/'
|
||||
stripUrl = url + '%s'
|
||||
imageSearch = compile(tagre("img", "src", r'(http://s3\.amazonaws\.com/the_brads/the-brads-[^"]+)'))
|
||||
imageSearch = compile(tagre("img", "src", r'(http://s3\.amazonaws\.com/the_brads/the-?brads-[^"]+)'))
|
||||
prevSearch = compile(tagre("a", "href", r'(http://bradcolbow\.com/archive/C4/[^"]+)', before="prev"))
|
||||
multipleImagesPerStrip = True
|
||||
help = 'Index format: a letter and a number'
|
||||
|
|
Loading…
Reference in a new issue