Fixed LoadingArtist
This commit is contained in:
parent
813e6876fc
commit
62a3a55b82
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
Dosage 2.14 (released xx.xx.2014)
|
||||
|
||||
Fixes:
|
||||
- comics: Fixed PennyArcade
|
||||
- comics: Fixed LoadingArtist, PennyArcade
|
||||
Closes: GH bug #62
|
||||
|
||||
|
||||
|
|
|
@ -87,7 +87,7 @@ class LoadingArtist(_BasicScraper):
|
|||
rurl = escape(url)
|
||||
stripUrl = url + '%s/'
|
||||
firstStripUrl = stripUrl % '2011/01/04/born'
|
||||
imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]+)' % rurl))
|
||||
imageSearch = compile(tagre("img", "src", r'(%swp-content/uploads/\d+/\d+/[^"]+)' % rurl))
|
||||
prevSearch = compile(tagre("a", "href", r'(%s\d+/\d+/\d+/[^"]+/)' % rurl, after="prev"))
|
||||
help = 'Index format: yyyy/mm/dd/stripname'
|
||||
|
||||
|
|
Loading…
Reference in a new issue