diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-02-12 12:41:38 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-02-12 12:41:38 -0800 |
commit | afa34c5cf3ec96b2bc6f2faddf5860fa06cb0f26 (patch) | |
tree | 85e64527e900a96c9f9b863400009a6f2969b358 | |
parent | Merge branch 'jb/parse-options-message-fix' (diff) | |
parent | submodule: add newline on invalid submodule error (diff) | |
download | tgif-afa34c5cf3ec96b2bc6f2faddf5860fa06cb0f26.tar.xz |
Merge branch 'es/submodule-fetch-message-fix'
Error message fix.
* es/submodule-fetch-message-fix:
submodule: add newline on invalid submodule error
-rw-r--r-- | submodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/submodule.c b/submodule.c index 5e8e3d1480..31f391d7d2 100644 --- a/submodule.c +++ b/submodule.c @@ -1480,7 +1480,7 @@ static int get_next_submodule(struct child_process *cp, !is_empty_dir(ce->name)) { spf->result = 1; strbuf_addf(err, - _("Could not access submodule '%s'"), + _("Could not access submodule '%s'\n"), ce->name); } } |