summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Henrie <alexhenrie24@gmail.com>2015-08-26 22:26:02 -0600
committerJunio C Hamano <gitster@pobox.com>2015-08-28 09:42:13 -0700
commit99885bc0ef0013a8979ad8cefe56360e69791811 (patch)
tree7e7230fbfbd1621cf6be110427e1b6f16fd8a4b5
parent3d27b9b005f26b107227fc18b6648df329daee97 (diff)
downloadgit-ah/reflog-typofix-in-error.tar.gz
reflog: add missing single quote to error messageah/reflog-typofix-in-error
The error message can be seen by running `git config gc.reflogexpire foo` and then `git reflog expire`. Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--builtin/reflog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/reflog.c b/builtin/reflog.c
index 44700f9243..177e0acd20 100644
--- a/builtin/reflog.c
+++ b/builtin/reflog.c
@@ -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;
}