Fixed ForLackOfABetterComic

This commit is contained in:
Bastian Kleineidam 2013-11-27 20:49:35 +01:00
parent d5889d6bb2
commit 9514a8eeae
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,7 @@
Dosage 2.8 (released 25.11.2013)
Dosage 2.8 (released xx.xx.2013)
Fixes:
- comics: Fixed ForLackOfABetterComic.
Dosage 2.7 (released 24.11.2013)

View file

@ -134,7 +134,7 @@ class Footloose(_BasicScraper):
class ForLackOfABetterComic(_BasicScraper):
url = 'http://forlackofabettercomic.com/'
rurl = escape(url)
rurl = r'http://(?:www\.)?forlackofabettercomic\.com/'
stripUrl = url + '?id=%s'
firstStripUrl = stripUrl % '1'
imageSearch = compile(tagre("img", "src", r'(%simg/comic/\d+[^"]+)' % rurl, after="comicimg"))