From eefc74c576bfad29df44d921e2be5c274d013605 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Wed, 6 Nov 2019 12:24:09 -0500 Subject: [PATCH] Fix PEP 8 line length --- CHANGELOG.md | 7 +++++++ parsedmarc/__init__.py | 7 ++++--- setup.py | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7a13e7..568f8e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +6.7.0 +----- + +- Fix typos (PR #119) +- Make CSV output match JSON output (Issue # 22) +- Graceful proccessing of invalid aggregate DMARC reports (PR #122) + 6.6.1 ----- diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index cccfdb5..559b59a 100644 --- a/parsedmarc/__init__.py +++ b/parsedmarc/__init__.py @@ -32,7 +32,7 @@ from parsedmarc.utils import is_outlook_msg, convert_outlook_msg from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime from parsedmarc.utils import parse_email -__version__ = "6.6.1" +__version__ = "6.7.0" logging.basicConfig( format='%(levelname)8s:%(filename)s:%(lineno)d:' @@ -517,8 +517,9 @@ def parsed_aggregate_reports_to_csv(reports): "errors", "domain", "adkim", "aspf", "p", "sp", "pct", "fo", "source_ip_address", "source_country", "source_reverse_dns", "source_base_domain", "count", "spf_aligned", - "dkim_aligned", "dmarc_aligned", "disposition", "policy_override_reasons", - "policy_override_comments", "envelope_from", "header_from", + "dkim_aligned", "dmarc_aligned", "disposition", + "policy_override_reasons", "policy_override_comments", + "envelope_from", "header_from", "envelope_to", "dkim_domains", "dkim_selectors", "dkim_results", "spf_domains", "spf_scopes", "spf_results"] diff --git a/setup.py b/setup.py index 8b731a6..4657876 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from setuptools import setup from codecs import open from os import path -__version__ = "6.6.1" +__version__ = "6.7.0" description = "A Python package and CLI for parsing aggregate and " \ "forensic DMARC reports"