Corrected description.

This commit is contained in:
mbrandis 2013-06-24 22:46:39 +02:00
parent 3b0393ccf6
commit ccf50cad89

View file

@ -565,13 +565,12 @@ class SupernormalStep(_BasicScraper):
help = 'Index format: number' help = 'Index format: number'
class ShermansLagoon(_BasicScraper): class ShermansLagoon(_BasicScraper):
description = u"Sherman's Lagoon" description = u"Sherman's Lagoon by Jim Toomey"
url = 'http://shermanslagoon.com/' url = 'http://shermanslagoon.com/'
stripUrl = url + 'comics/%s' stripUrl = url + 'comics/%s'
firstStripUrl = stripUrl % '/december-29-2003/' firstStripUrl = stripUrl % '/december-29-2003/'
imageSearch = compile(r'<img src="(http://safr.kingfeatures.com/idn/etv/zone/xml/content.php\?file=.+?)" />') imageSearch = compile(r'<img src="(http://safr.kingfeatures.com/idn/etv/zone/xml/content.php\?file=.+?)" />')
prevSearch = compile(r'<a href="(http://shermanslagoon.com/comics/.+?/)" rel="prev"') prevSearch = compile(r'<a href="(http://shermanslagoon.com/comics/.+?/)" rel="prev"')
description = u'by Jim Toomey'
@classmethod @classmethod
def namer(cls, imageUrl, pageUrl): def namer(cls, imageUrl, pageUrl):