Commit 2f4e5f79 authored by Andrew Gerrand's avatar Andrew Gerrand

gobuilder: send commit time in RFC3339 format

R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5701063
parent fa33fdbc
......@@ -169,7 +169,7 @@ func postCommit(key, pkg string, l *HgLog) error {
"PackagePath": pkg,
"Hash": l.Hash,
"ParentHash": l.Parent,
"Time": t.Unix() * 1e6, // in microseconds, yuck!
"Time": t.Format(time.RFC3339),
"User": l.Author,
"Desc": l.Desc,
}, nil)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment