From b92e9dab19fdee1fc0ffc7d562d6516379395bfa Mon Sep 17 00:00:00 2001 From: Moritz Poldrack Date: Thu, 4 Aug 2022 10:34:21 +0200 Subject: [PATCH] lint: formatted code Signed-off-by: Moritz Poldrack Acked-by: Robin Jarry --- commands/msg/pipe.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commands/msg/pipe.go b/commands/msg/pipe.go index 71e402d..176d1f0 100644 --- a/commands/msg/pipe.go +++ b/commands/msg/pipe.go @@ -237,7 +237,9 @@ func newMessagesReader(messages []*types.FullMessage, useMbox bool) io.Reader { var gitMessageIdRe = regexp.MustCompile(`^(\d+\.\d+)-(\d+)-(.+)$`) // Git send-email Message-Id headers have the following format: -// DATETIME.PID-NUM-COMMITTER +// +// DATETIME.PID-NUM-COMMITTER +// // Return a copy of the message id with NUM zero-padded to three characters. func padGitMessageId(msgId string) string { matches := gitMessageIdRe.FindStringSubmatch(msgId)