Skip to content

Commit

Permalink
Merge branch 'ah/reflog-typofix-in-error'
Browse files Browse the repository at this point in the history
Error string fix.

* ah/reflog-typofix-in-error:
  reflog: add missing single quote to error message
  • Loading branch information
gitster committed Sep 1, 2015
2 parents 0b20a46 + 99885bc commit bc1c600
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 @@ -429,7 +429,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 bc1c600

Please sign in to comment.