summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--git.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/git.c b/git.c
index e640f83..d5b1661 100644
--- a/git.c
+++ b/git.c
@@ -220,7 +220,7 @@ int add_comment(comment *comment, const char *pr_root) {
j += sprintf(file_buf+j, "reply-date: ");
j += strftime(file_buf+j, -1, "%c %z\n", &tm);
}
- j += sprintf(file_buf+j, "description: %s", comment->desc);
+ j += sprintf(file_buf+j, "description: %s\n\n", comment->desc);
/* Append /comments to the PR root. */
sprintf(filename, "%s/comments", pr_root);