diff options
-rw-r--r-- | meta/lib/oe/cve_check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/cve_check.py b/meta/lib/oe/cve_check.py index 268adfb528..647a94f5af 100644 --- a/meta/lib/oe/cve_check.py +++ b/meta/lib/oe/cve_check.py | |||
@@ -257,7 +257,7 @@ def decode_cve_status(d, cve): | |||
257 | else: | 257 | else: |
258 | # Other case: no CPE, the syntax is then: | 258 | # Other case: no CPE, the syntax is then: |
259 | # detail: description | 259 | # detail: description |
260 | description = status_split[len(status_split)-1].strip() if (len(status_split) > 1) else "" | 260 | description = status.split(':', 1)[1].strip() if (len(status_split) > 1) else "" |
261 | 261 | ||
262 | status_out["vendor"] = vendor | 262 | status_out["vendor"] = vendor |
263 | status_out["product"] = product | 263 | status_out["product"] = product |