Skip to content

Commit

Permalink
remove time range footer from output not scoped by time range
Browse files Browse the repository at this point in the history
  • Loading branch information
tkishel committed Mar 4, 2021
1 parent 16d59d7 commit 64d2b71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pcs-inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ def get_integrations():
rows.append((compliance_standard_name, alert_count_high, alert_count_medium, alert_count_low) )
rows.append((''))
rows.append((''))
rows.append(('Time Range: %s' % VAR_TIME_RANGE, ''))
# rows.append(('Time Range: %s' % VAR_TIME_RANGE, ''))
write_sheet(panda_writer, 'Open Alerts by Standard', rows)

if not SUPPORT_API_MODE:
Expand Down Expand Up @@ -764,7 +764,7 @@ def get_integrations():
rows.append((policy_name, policy_upi, policy_severity, policy_type, policy_is_remediable, policy_is_remediable, policy_alert_count, policy_standards_list))
rows.append((''))
rows.append((''))
rows.append(('Time Range: %s' % VAR_TIME_RANGE, ''))
# rows.append(('Time Range: %s' % VAR_TIME_RANGE, ''))
write_sheet(panda_writer, 'Open Alerts by Policy', rows)

if not SUPPORT_API_MODE:
Expand Down Expand Up @@ -810,7 +810,7 @@ def get_integrations():
('Open Alerts Generated by Default Policies', alert_totals_by_policy['default']),
('',''),
('',''),
('Time Range: %s' %VAR_TIME_RANGE, ''),
# ('Time Range: %s' %VAR_TIME_RANGE, ''),
]
write_sheet(panda_writer, 'Open Alerts Summary', rows)

Expand Down

0 comments on commit 64d2b71

Please sign in to comment.