Fix bug in HtmlRuleset description parsing

This commit is contained in:
Sven Slootweg 2013-01-10 02:00:47 +01:00
parent b26e1abfc7
commit 96338fc1d5

View file

@ -82,7 +82,7 @@ class HtmlRuleset(zippydoc.TransformationRuleset):
description = item[1]
if len(description) > 80:
matches = re.match("^(.{0,80})\W", data)
matches = re.match("^(.{0,80})\W", description)
description = matches.group(1) + "..."
description = zippydoc.Value(description).transform(self)