Remove colons in timestamp (#315)

Signed-off-by: Merwane Hamadi <merwanehamadi@gmail.com>
This commit is contained in:
merwanehamadi
2023-08-16 15:53:06 -07:00
committed by GitHub
parent c13a46fd3b
commit 760b60b249

View File

@@ -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"