Debian: Fix @bug.

master
Valentin Lorentz 2013-07-06 12:55:10 +02:00
parent 0b956cddbe
commit 92ced2f2ab
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ class Debian(callbacks.Plugin):
L = map(utils.web.htmlToText, map(lambda p: p.group(1), searches))
resp = format(resp, *L)
if sev:
sev = filter(None, sev.groups())
sev = list(filter(None, sev.groups()))
if sev:
sev = utils.web.htmlToText(sev[0])
resp += format('; %s: %s', self.bold('Severity'), sev)