Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-09-02 02:31:18 +0300
committerJunio C Hamano <gitster@pobox.com>2015-09-02 02:31:18 +0300
commitbc1c6009c6b6dd1048c4111f63eae409ab0d1515 (patch)
tree3fa885d6f596e2c0d64edcec9d5eff34e8e91aaa
parent0b20a4680bf668ba2719fa48a9bdbf137253a4b6 (diff)
parent99885bc0ef0013a8979ad8cefe56360e69791811 (diff)
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 7ed0e8501c..f96ca2a27d 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;
}