added missing newline

This commit is contained in:
A_D
2018-11-17 16:46:31 +02:00
parent 1af967264b
commit 19f178b03f

View File

@@ -114,6 +114,6 @@ func handleIssueComment(data []byte) {
)
fmt.Printf(INDENT + "---\n")
msg := strings.Replace(action.Comment.Body, "\n", strings.Repeat(INDENT, 2), -1)
msg := strings.Replace(action.Comment.Body, "\n", strings.Repeat(INDENT, 2) + "\n", -1)
fmt.Printf(strings.Repeat(INDENT, 2) + msg)
}