From 760b60b2495bbc38e876224c5ce02d666dadcd05 Mon Sep 17 00:00:00 2001 From: merwanehamadi Date: Wed, 16 Aug 2023 15:53:06 -0700 Subject: [PATCH] Remove colons in timestamp (#315) Signed-off-by: Merwane Hamadi --- agbenchmark/utils/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agbenchmark/utils/utils.py b/agbenchmark/utils/utils.py index 12b58beb..9c2d228f 100644 --- a/agbenchmark/utils/utils.py +++ b/agbenchmark/utils/utils.py @@ -25,7 +25,7 @@ def calculate_info_test_path(base_path: Path) -> str: base_path.mkdir(parents=True, exist_ok=True) # Get current UTC date-time stamp - date_stamp = datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%S") + date_stamp = datetime.now(timezone.utc).strftime("%Y%m%dT%H%M%S") # Default run name run_name = "full_run"