Skip to content

Commit

Permalink
syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
davedavemckay committed Jul 2, 2024
1 parent d0c0d58 commit 6f547b3
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 @@ -48,7 +48,7 @@ def compare_csv_file_lists(log_folder, ds):

print(csv_files)

cmp_out = subprocess.run([f'cmp {log_folder}/{csv_files[0]} {log_folder}/{csv_files[1]}'].split(), capture_output=True, text=True)
cmp_out = subprocess.run(f'cmp {log_folder}/{csv_files[0]} {log_folder}/{csv_files[1]}'.split(), capture_output=True, text=True)

if cmp_out.stdout != "":
print("CSV files have changed!")
Expand Down

0 comments on commit 6f547b3

Please sign in to comment.