Fixed ForLackOfABetterComic
This commit is contained in:
parent
d5889d6bb2
commit
9514a8eeae
2 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
||||||
Dosage 2.8 (released 25.11.2013)
|
Dosage 2.8 (released xx.xx.2013)
|
||||||
|
|
||||||
Fixes:
|
Fixes:
|
||||||
|
- comics: Fixed ForLackOfABetterComic.
|
||||||
|
|
||||||
|
|
||||||
Dosage 2.7 (released 24.11.2013)
|
Dosage 2.7 (released 24.11.2013)
|
||||||
|
|
|
@ -134,7 +134,7 @@ class Footloose(_BasicScraper):
|
||||||
|
|
||||||
class ForLackOfABetterComic(_BasicScraper):
|
class ForLackOfABetterComic(_BasicScraper):
|
||||||
url = 'http://forlackofabettercomic.com/'
|
url = 'http://forlackofabettercomic.com/'
|
||||||
rurl = escape(url)
|
rurl = r'http://(?:www\.)?forlackofabettercomic\.com/'
|
||||||
stripUrl = url + '?id=%s'
|
stripUrl = url + '?id=%s'
|
||||||
firstStripUrl = stripUrl % '1'
|
firstStripUrl = stripUrl % '1'
|
||||||
imageSearch = compile(tagre("img", "src", r'(%simg/comic/\d+[^"]+)' % rurl, after="comicimg"))
|
imageSearch = compile(tagre("img", "src", r'(%simg/comic/\d+[^"]+)' % rurl, after="comicimg"))
|
||||||
|
|
Loading…
Reference in a new issue