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 | Sync with maint (diff) | |
parent | sequencer: fix missing newline (diff) | |
download | tgif-f364f02724d6ce4c64fae85a86e0452b5634ddf8.tar.xz |
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, |