From 0791beb1824baa4c67daa985387640fb47ffb90c Mon Sep 17 00:00:00 2001 From: Emilio Pozuelo Monfort Date: Wed, 21 Jun 2023 16:39:11 +0200 Subject: check-new-issues: don't mark itp packages as seen We don't want to autocomplete on foo if we're going to add an autocompletion for 'foo (bug ...)' instead. --- bin/check-new-issues | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bin') diff --git a/bin/check-new-issues b/bin/check-new-issues index fe0ceed8a0..f8e2775bb1 100755 --- a/bin/check-new-issues +++ b/bin/check-new-issues @@ -376,6 +376,9 @@ for name, cve in cves.items(): if not args.list: for ann in cve.annotations: if isinstance(ann, parsers.PackageAnnotation): + if ann.kind == 'itp': + continue + pkg = ann.package seen_pkgs[pkg] = True -- cgit v1.2.3