diff options
author | Bjoern Tropf <asym@gentoo.org> | 2010-01-15 09:22:34 +0100 |
---|---|---|
committer | Bjoern Tropf <asym@gentoo.org> | 2010-01-15 09:22:34 +0100 |
commit | d80308e9f01cb7dfb3aaaa942c50c9856dea91d0 (patch) | |
tree | 834819b818c9da1e8678e204011baa18390ea6c4 | |
parent | Add two spinner.update() calls (diff) | |
download | kernel-check-master.tar.gz kernel-check-master.tar.bz2 kernel-check-master.zip |
-rwxr-xr-x | pym/kernelcheck/kernelcheck.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/kernelcheck/kernelcheck.py b/pym/kernelcheck/kernelcheck.py index 6271f5f..163c02b 100755 --- a/pym/kernelcheck/kernelcheck.py +++ b/pym/kernelcheck/kernelcheck.py @@ -188,11 +188,11 @@ def print_summary(vullist, kernel_updates): #TODO add pending identifier if ' PENDING ' in cve.desc and '0000-00-00' == cve.published: - cvetype = '(%s%%)' % colorize('WARN', 'pending') + cvetype = '%s%%' % colorize('WARN', 'pending') if 'GENERIC-MAP-NOMATCH' == cve.cve: cve.cve = 'CVE-0000-0000' - cvetype = '(%s%%)' % colorize('WARN', 'nomatch') + cvetype = '%s%%' % colorize('WARN', 'nomatch') if cve.score == '10.0': cve.score = '10.' |