Change date key to UTC ISO 8601 format

pull/4110/head
Jimmy Brisson 2017-04-07 10:54:41 -05:00
parent 6ef384b7fe
commit 05dce1206e
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ def add_result_to_report(report, result):
report - the report to append to
result - the result to append
"""
result["date"] = str(datetime.datetime.now())
result["date"] = datetime.datetime.utcnow().isoformat()
target = result["target_name"]
toolchain = result["toolchain_name"]
id_name = result['id']