diff --git a/CHANGELOG.md b/CHANGELOG.md index 568f8e0..69a1405 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,8 @@ - Fix typos (PR #119) - Make CSV output match JSON output (Issue # 22) -- Graceful proccessing of invalid aggregate DMARC reports (PR #122) +- Graceful processing of invalid aggregate DMARC reports (PR #122) +- Remove Python 3.4 support 6.6.1 ----- diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index 8a75fbb..9d14a8e 100644 --- a/parsedmarc/__init__.py +++ b/parsedmarc/__init__.py @@ -426,7 +426,7 @@ def parsed_aggregate_reports_to_csv_rows(reports): return str(obj).lower() if type(reports) == OrderedDict: - reports = [reports['report']] + reports = [reports] rows = []