Fix DrFun image regex.

This commit is contained in:
Bastian Kleineidam 2013-01-24 07:53:47 +01:00
parent 1b23e0c111
commit 4b35d332dc

View file

@ -83,7 +83,7 @@ class DoemainOfOurOwn(_BasicScraper):
class DrFun(_BasicScraper):
latestUrl = 'http://www.ibiblio.org/Dave/ar00502.htm'
stripUrl = 'http://www.ibiblio.org/Dave/ar%s.htm'
imageSearch = compile(r'<A HREF= "(Dr-Fun/df\d{6}/df.+?)">')
imageSearch = compile(r'<A HREF= "(Dr-Fun/df\d+/df[^"]+)">')
multipleImagesPerStrip = True
prevSearch = compile(r'<A HREF="(.+?)">Previous Week,')
help = 'Index format: nnnnn'