We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a5d0cf commit 9a78243Copy full SHA for 9a78243
src/subcommands/reporting.py
@@ -389,7 +389,7 @@ def rawdataMain(args: argparse.Namespace) -> None:
389
390
def collateMain(args: argparse.Namespace) -> None:
391
# Include the current date and time
392
- now = datetime.datetime.now(datetime.UTC)
+ now = datetime.datetime.now(datetime.UTC).replace(microsecond=0)
393
394
# Include git revsion or RTLMeter
395
rltmeterVersion = subprocess.run(
@@ -444,7 +444,7 @@ def collateMain(args: argparse.Namespace) -> None:
444
445
# Assemble final record
446
result = {
447
- "date": now.strftime("%Y/%m/%d-%H:%M:%S"),
+ "date": now.isoformat(),
448
"RTLMeterVersion": rltmeterVersion,
449
"VerilatorVersion": verilatorVersion,
450
"cpuinfo": cpuinfo,
0 commit comments