Skip to content

Commit 7e1d155

Browse files
committed
Log correct selection of packs to add.
1 parent 7902a1c commit 7e1d155

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeql_bundle/codeql-bundle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def cli(
8585
selected_packs = packs_in_workspace
8686

8787
logger.info(
88-
f"Considering the following CodeQL packs for inclusion in the custom bundle: {','.join(map(lambda p: p, packs))}"
88+
f"Considering the following CodeQL packs for inclusion in the custom bundle: {','.join(map(lambda p: p.name, selected_packs))}"
8989
)
9090
missing_packs = set(packs) - {pack.name for pack in selected_packs}
9191
if len(missing_packs) > 0:

0 commit comments

Comments
 (0)