From 9e7e214fac98e06f64d586fb7bac3ef1b1575a60 Mon Sep 17 00:00:00 2001 From: Diptanu Choudhury Date: Mon, 1 Feb 2016 17:41:47 -0800 Subject: [PATCH] Updated the time stamp style --- command/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/helpers.go b/command/helpers.go index fab7a5d6bea..c03ba3cbd1a 100644 --- a/command/helpers.go +++ b/command/helpers.go @@ -35,5 +35,5 @@ func limit(s string, length int) string { // formatTime formats the time to string based on RFC822 func formatTime(t time.Time) string { - return t.Format(time.RFC822) + return t.Format("02/01/06 15:04:05 MST") }