Skip to content

Commit 05dce12

Browse files
committed
Change date key to UTC ISO 8601 format
1 parent 6ef384b commit 05dce12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/build_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def add_result_to_report(report, result):
105105
report - the report to append to
106106
result - the result to append
107107
"""
108-
result["date"] = str(datetime.datetime.now())
108+
result["date"] = datetime.datetime.utcnow().isoformat()
109109
target = result["target_name"]
110110
toolchain = result["toolchain_name"]
111111
id_name = result['id']

0 commit comments

Comments
 (0)