From bcd11e3f82af37ccc5cf32c2a03149ff26a9745f Mon Sep 17 00:00:00 2001 From: Dave McKay Date: Mon, 1 Jul 2024 16:49:01 +0100 Subject: [PATCH] syntax error fixed --- scripts/compare_csv_file_lists.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/compare_csv_file_lists.py b/scripts/compare_csv_file_lists.py index b417646d..0a7616c0 100644 --- a/scripts/compare_csv_file_lists.py +++ b/scripts/compare_csv_file_lists.py @@ -3,7 +3,7 @@ parser = argparse.ArgumentParser(description="Compare CSV file lists in a log folder.") parser.add_argument("--path", '-p', help="Path to the log folder", required=True) -parser.add_argument("--datestamp", '-d', help="Datestamp", required=True, help="Datestamp in the form YYYYMMDD") +parser.add_argument("--datestamp", '-d', help="Datestamp in the form YYYYMMDD", required=True) args = parser.parse_args() log_folder = args.path