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:
Alex Henrie 2015-08-26 22:26:02 -06:00 committed by Junio C Hamano
parent 3d27b9b005
commit 99885bc0ef

View file

@ -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;
}