Fix CVE snarfer for new layout of CVE website

This commit is contained in:
Dennis Kaarsemaker
2007-10-02 23:04:04 +02:00
parent 393fb71d98
commit 2e08efdd35

View File

@ -73,7 +73,7 @@ class BugNotFoundError(Exception):
"""Pity, bug isn't there"""
pass
cvere = re.compile(r'<td><font[^>]*>description</font></td>\s*<td><font[^>]*>(.*?)\s*</font>', re.I | re.DOTALL)
cvere = re.compile(r'<th.*?Description.*?<td.*?>(.*?)\s*</td>', re.I | re.DOTALL)
class Bugtracker(callbacks.PluginRegexp):
"""Show a link to a bug report with a brief description"""
threaded = True