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: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
3d27b9b005
commit
99885bc0ef
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user