launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #33126
[Merge] ~enriqueesanchz/launchpad:add-get-untriaged-cves into launchpad:master
Enrique Sánchez has proposed merging ~enriqueesanchz/launchpad:add-get-untriaged-cves into launchpad:master.
Commit message:
Update CveSet.advancedSearch() API docs
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~enriqueesanchz/launchpad/+git/launchpad/+merge/494178
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~enriqueesanchz/launchpad:add-get-untriaged-cves into launchpad:master.
diff --git a/lib/lp/bugs/interfaces/cve.py b/lib/lp/bugs/interfaces/cve.py
index a3037ec..98d0aae 100644
--- a/lib/lp/bugs/interfaces/cve.py
+++ b/lib/lp/bugs/interfaces/cve.py
@@ -281,12 +281,17 @@ class ICveSet(Interface):
# not_in_distribution patched in lp.bugs.interfaces.webservice
@operation_parameters(
in_distribution=List(
- title=_("Distributions linked to the cve"),
+ title=_(
+ "List of distributions (link) with a vulnerability for the cve"
+ ),
value_type=Reference(schema=Interface),
required=False,
),
not_in_distribution=List(
- title=_("Distributions not linked to the cve"),
+ title=_(
+ "List of distributions (link) without a vulnerability for the"
+ "cve"
+ ),
value_type=Reference(schema=Interface),
required=False,
),