Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
lme-nca committed Nov 16, 2023
1 parent 6dfa456 commit 4003749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dojo/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2550,7 +2550,7 @@ def get_open_findings_burndown(product):
# count all findings older than 90 days that are still active OR will be mitigated/risk-accepted in the next 90 days.
for f in list(findings.filter(date__lt=start_date)):
if f.active:
print("active for findings older than 90 days: " + str(f_risk_accepted_date))
print("counting active findings older than 90 days")
if f.severity == 'Critical':
critical_count += 1
if f.severity == 'High':
Expand Down

0 comments on commit 4003749

Please sign in to comment.