From: Robert P. J. Day Date: Tue, 29 May 2018 12:14:35 +0000 (-0400) Subject: init: fix grammar in "templates not found" msg X-Git-Tag: v2.18.0-rc1~10^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=44f560fc16e07ccd05f19fce5f3bde74ef050c03;p=thirdparty%2Fgit.git init: fix grammar in "templates not found" msg Signed-off-by: Robert P. J. Day Signed-off-by: Junio C Hamano --- diff --git a/builtin/init-db.c b/builtin/init-db.c index 68ff4ad75a..244deeff09 100644 --- a/builtin/init-db.c +++ b/builtin/init-db.c @@ -117,7 +117,7 @@ static void copy_templates(const char *template_dir) dir = opendir(template_path.buf); if (!dir) { - warning(_("templates not found %s"), template_dir); + warning(_("templates not found in %s"), template_dir); goto free_return; }