From 6c84cfb7c49803efab8e8d1d5018afaf677832c8 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Tue, 27 Jun 2023 15:56:33 -0400 Subject: [PATCH] Fix output in tests.py --- tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests.py b/tests.py index afcbd72..1f311ec 100644 --- a/tests.py +++ b/tests.py @@ -33,7 +33,7 @@ class Test(unittest.TestCase): for sample_path in sample_paths: if os.path.isdir(sample_path): continue - print("Testing {0}:" .format(sample_path), end="") + print("Testing {0}: " .format(sample_path), end="") parsed_report = parsedmarc.parse_report_file( sample_path)["report"] parsedmarc.parsed_aggregate_reports_to_csv(parsed_report)