提交 99885bc0 编写于 作者: A Alex Henrie 提交者: Junio C Hamano

reflog: add missing single quote to error message

The error message can be seen by running
`git config gc.reflogexpire foo` and then `git reflog expire`.
Signed-off-by: NAlex Henrie <alexhenrie24@gmail.com>
Signed-off-by: NJunio C Hamano <gitster@pobox.com>
上级 3d27b9b0
......@@ -497,7 +497,7 @@ static int parse_expire_cfg_value(const char *var, const char *value, unsigned l
if (!value)
return config_error_nonbool(var);
if (parse_expiry_date(value, expire))
return error(_("%s' for '%s' is not a valid timestamp"),
return error(_("'%s' for '%s' is not a valid timestamp"),
value, var);
return 0;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册