summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-09-01 23:31:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-09-01 23:31:18 (GMT)
commitbc1c6009c6b6dd1048c4111f63eae409ab0d1515 (patch)
tree3fa885d6f596e2c0d64edcec9d5eff34e8e91aaa
parent0b20a4680bf668ba2719fa48a9bdbf137253a4b6 (diff)
parent99885bc0ef0013a8979ad8cefe56360e69791811 (diff)
downloadgit-bc1c6009c6b6dd1048c4111f63eae409ab0d1515.zip
git-bc1c6009c6b6dd1048c4111f63eae409ab0d1515.tar.gz
git-bc1c6009c6b6dd1048c4111f63eae409ab0d1515.tar.bz2
Merge branch 'ah/reflog-typofix-in-error'
Error string fix. * ah/reflog-typofix-in-error: reflog: add missing single quote to error message
-rw-r--r--builtin/reflog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/reflog.c b/builtin/reflog.c
index 7ed0e85..f96ca2a 100644
--- a/builtin/reflog.c
+++ b/builtin/reflog.c
@@ -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;
}