diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-03-23 11:20:46 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-03-23 11:20:46 -0700 |
commit | f364f02724d6ce4c64fae85a86e0452b5634ddf8 (patch) | |
tree | 520d5dfcebfe344b7e335959cc0a5f8fcc84e274 | |
parent | afd6726309f57f532b4b989a75c1392359c611cc (diff) | |
parent | a42e1b4194b02638ea4f590ac1e7d231274886d1 (diff) | |
download | git-f364f02724d6ce4c64fae85a86e0452b5634ddf8.tar.gz |
Merge branch 'js/rebase-helper'
A hotfix for a regression fix
* js/rebase-helper:
sequencer: fix missing newline
-rw-r--r-- | sequencer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sequencer.c b/sequencer.c index 8183a83c1f..d76dc9cb2b 100644 --- a/sequencer.c +++ b/sequencer.c @@ -1998,7 +1998,7 @@ static int pick_commits(struct todo_list *todo_list, struct replay_opts *opts) struct commit *commit = item->commit; if (!res) fprintf(stderr, - _("Stopped at %s... %.*s"), + _("Stopped at %s... %.*s\n"), short_commit_name(commit), item->arg_len, item->arg); return error_with_patch(commit, |