From 3a8c12418a97230df714488e522f44ce8af685c5 Mon Sep 17 00:00:00 2001 From: bep Date: Tue, 9 Dec 2014 11:42:07 +0100 Subject: [PATCH] Add timezone to buildDate --- commands/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/version.go b/commands/version.go index 0fdffba14..360aef247 100644 --- a/commands/version.go +++ b/commands/version.go @@ -74,6 +74,6 @@ func setBuildDate() { // formatBuildDate formats the buildDate according to the value in // .Params.DateFormat, if it's set. func formatBuildDate() { - t, _ := time.Parse("2006-01-02T15:04:05", buildDate) + t, _ := time.Parse("2006-01-02T15:04:05-0700", buildDate) buildDate = t.Format(time.RFC3339) }