Skip to content

Commit

Permalink
reflog: add missing single quote to error message
Browse files Browse the repository at this point in the history
The error message can be seen by running
`git config gc.reflogexpire foo` and then `git reflog expire`.

Signed-off-by: Alex Henrie <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
alexhenrie authored and gitster committed Aug 28, 2015
1 parent 3d27b9b commit 99885bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/reflog.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 99885bc

Please sign in to comment.