From f164530359b9b762e06bbc512d90eb4682abe75a Mon Sep 17 00:00:00 2001 From: Chris Sexton Date: Wed, 28 Mar 2018 03:29:42 -0400 Subject: [PATCH] first: change time format --- plugins/first/first.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/first/first.go b/plugins/first/first.go index 3614576..d7213f2 100644 --- a/plugins/first/first.go +++ b/plugins/first/first.go @@ -198,7 +198,7 @@ func (p *FirstPlugin) announceFirst(message msg.Message) { c := message.Channel if p.First != nil { p.Bot.SendMessage(c, fmt.Sprintf("%s had first at %s with the message: \"%s\"", - p.First.nick, p.First.time.Format(time.Kitchen), p.First.body)) + p.First.nick, p.First.time.Format("15:04"), p.First.body)) } }