Merge branch 'ah/reflog-typofix-in-error'

Error string fix.

* ah/reflog-typofix-in-error:
  reflog: add missing single quote to error message
This commit is contained in:
Junio C Hamano 2015-09-01 16:31:18 -07:00
commit bc1c6009c6

View file

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