Skip to content

Commit

Permalink
Fixed typo for finding name
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Kuffer committed Sep 18, 2019
1 parent f552768 commit 07d128c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bandit/bandit_json_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def parse_json(outputPath, asset_info, vuln_data, scan_date):
finding_details_dict = {}

# Get the vulnerability name
finding_details_dict['finding_name'] = "Brakeman test failure: " + str(vuln['test_id']) + "-" + str(vuln["test_name"])
finding_details_dict['finding_name'] = "Bandit test failure: " + str(vuln['test_id']) + "-" + str(vuln["test_name"])

# Get the finding path to the file which has this issue
# Use this info for determining asset
Expand Down

0 comments on commit 07d128c

Please sign in to comment.