Skip to content

Commit

Permalink
Fix issue filter
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Oct 24, 2023
1 parent 17c32f7 commit bc95756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exasol/toolbox/tools/security.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def filter(
for line in sys.stdin:
stdout(line)

to_be_filtered = list(gh_security_issues())
to_be_filtered = [cve for _, cve in gh_security_issues()]
stderr(
"Filtering:\n{issues}".format(
issues="\n".join(f"- {i}" for i in to_be_filtered)
Expand Down

0 comments on commit bc95756

Please sign in to comment.