Update launch configuration and metadata key for timespan in aggregate report

This commit is contained in:
Sean Whalen
2025-12-01 16:10:41 -05:00
parent 67fe009145
commit 46a62cc10a
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -19,11 +19,11 @@
"console": "integratedTerminal"
},
{
"name": "sample.eml",
"name": "sample",
"type": "debugpy",
"request": "launch",
"module": "parsedmarc.cli",
"args": ["samples/private/sample.eml"]
"args": ["samples/private/sample"]
},
{
"name": "sortlists.py",
+1 -1
View File
@@ -721,7 +721,7 @@ def parse_aggregate_report_xml(
new_report_metadata["begin_date"] = date_range["begin"]
new_report_metadata["end_date"] = date_range["end"]
new_report_metadata["timespan_requires_normalization"] = normalize_timespan
new_report_metadata["original_span_seconds"] = span_seconds
new_report_metadata["original_timespan_seconds"] = span_seconds
begin_dt = human_timestamp_to_datetime(
new_report_metadata["begin_date"], to_utc=True
)