From a10e6592fe4e433a9770f37257569bc7855f8f03 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Wed, 23 Jun 2021 12:06:29 +0100 Subject: [PATCH] fix startup bug Pretty silly typo means `parsedmarc` completely fails unless `parsedmarc.ini` has `general.aggregate_json_filename` explicitly set --- parsedmarc/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsedmarc/cli.py b/parsedmarc/cli.py index 374e6af..be2026a 100644 --- a/parsedmarc/cli.py +++ b/parsedmarc/cli.py @@ -222,7 +222,7 @@ def _main(): strip_attachment_payloads=args.strip_attachment_payloads, output=args.output, aggregate_csv_filename=args.aggregate_csv_filename, - aggreate_json_filename=args.aggregate_json_filename, + aggregate_json_filename=args.aggregate_json_filename, forensic_csv_filename=args.forensic_csv_filename, forensic_json_filename=args.forensic_json_filename, nameservers=args.nameservers,