Skip to content

Commit c51425f

Browse files
committed
Fix date format
1 parent 48b2306 commit c51425f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarks/microbenchmarks/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ def generate_results_csv(
358358
os.makedirs(output_dir, exist_ok=True)
359359
# Generate the filename with the current date and time in the specified format
360360
if file_name is None:
361-
file_name = datetime.now().strftime("results_%d%m%Y_%H%M%S.csv")
361+
file_name = datetime.now().strftime("results_%m%d%Y_%H%M%S.csv")
362362

363363
file_path = os.path.join(output_dir, file_name)
364364

0 commit comments

Comments
 (0)