From 1af967264bcc3aba5e40d8d90f4904811e1605d0 Mon Sep 17 00:00:00 2001 From: A_D Date: Sat, 17 Nov 2018 16:33:41 +0200 Subject: [PATCH] added missing newline --- webhooks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webhooks.go b/webhooks.go index c41f39d..a2f1288 100644 --- a/webhooks.go +++ b/webhooks.go @@ -113,7 +113,7 @@ func handleIssueComment(data []byte) { action.Issue.Title, ) - fmt.Printf(INDENT + "---") + fmt.Printf(INDENT + "---\n") msg := strings.Replace(action.Comment.Body, "\n", strings.Repeat(INDENT, 2), -1) fmt.Printf(strings.Repeat(INDENT, 2) + msg) }