Skip to content
Snippets Groups Projects
Verified Commit c9820241 authored by Mattia Rizzolo's avatar Mattia Rizzolo
Browse files

Fix possible crash in --list-debian-substvars

Fixes: #228



Signed-off-by: Mattia Rizzolo's avatarMattia Rizzolo <mattia@debian.org>
parent 72fe5340
No related branches found
No related tags found
No related merge requests found
Pipeline #214352 failed
......@@ -586,7 +586,8 @@ class ListDebianSubstvarsAction(argparse._StoreTrueAction):
try:
pkg = EXTERNAL_TOOLS[x]["debian"]
except KeyError:
pass
continue
packages.add(pkg)
if x not in HUGE_TOOLS:
packages_minimal.add(pkg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment