mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-08-17 20:53:18 +00:00
Merge pull request #100 from michaeldavie/csv-bug-fix
Correct bug in 6.5.1
This commit is contained in:
@@ -447,7 +447,7 @@ def parsed_aggregate_reports_to_csv_rows(reports):
|
||||
adkim=adkim, aspf=aspf, p=p, sp=sp, pct=pct, fo=fo)
|
||||
|
||||
for record in report["records"]:
|
||||
row = report_dict
|
||||
row = report_dict.copy()
|
||||
row["source_ip_address"] = record["source"]["ip_address"]
|
||||
row["source_country"] = record["source"]["country"]
|
||||
row["source_reverse_dns"] = record["source"]["reverse_dns"]
|
||||
|
||||
Reference in New Issue
Block a user