Skip to content

Commit

Permalink
syntax error fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
davedavemckay committed Jul 1, 2024
1 parent e5afa5f commit bcd11e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/compare_csv_file_lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bcd11e3

Please sign in to comment.