Fix typo in regex for SandraOnTheRocks.

This commit is contained in:
Sven Hartge 2013-04-20 19:59:01 +02:00
parent 40f2aed8f0
commit 8e34239b27

View file

@ -54,10 +54,10 @@ class SandraAndWooGerman(_BasicScraper):
class SandraOnTheRocks(_BasicScraper): class SandraOnTheRocks(_BasicScraper):
url = 'http://www.sandraontherocks.com/' url = 'http://www.sandraontherocks.com/'
stripUrl = url + 'strips-sotra/%s' stripUrl = url + 'strips-sotr/%s'
firstStripUrl = stripUrl % 'start_by_running' firstStripUrl = stripUrl % 'start_by_running'
imageSearch = compile(tagre("img", "src", r'([^"]*/comics/[^"]+)')) imageSearch = compile(tagre("img", "src", r'([^"]*/comics/[^"]+)'))
prevSearch = compile(tagre("a", "href", r'([^"]*/strips-sotra/[^"]+)', before="cn[id]prev")) prevSearch = compile(tagre("a", "href", r'([^"]*/strips-sotr/[^"]+)', before="cn[id]prev"))
help = 'Index format: name' help = 'Index format: name'
class ScaryGoRound(_BasicScraper): class ScaryGoRound(_BasicScraper):