i18n: add a missing space in message
The message spans over 2 lines but the C conconcatenation does not add the needed space between the two lines. Signed-off-by: Jean-Noel Avila <jn.avila@free.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Jean-Noel Avila committed
Oct 8, 2017 at 14:18 UTC
dfab1eac2362dfcac7c96a43c3938d8ec67d7722
1 file changed
+1
-1
sequencer.c
+1
-1
@@ -2536,7 +2536,7 @@ static enum check_level get_missing_commit_check_level(void)
2536
return CHECK_WARN;
2537
if (!strcasecmp("error", value))
2538
return CHECK_ERROR;
2539
- warning(_("unrecognized setting %s for option"
2539
+ warning(_("unrecognized setting %s for option "
2540
"rebase.missingCommitsCheck. Ignoring."), value);
2541
return CHECK_IGNORE;
2542
}