summaryrefslogtreecommitdiff
path: root/builtin/reflog.c
diff options
context:
space:
mode:
authorAlex Henrie <alexhenrie24@gmail.com>2015-08-27 04:26:02 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-08-28 16:42:13 (GMT)
commit99885bc0ef0013a8979ad8cefe56360e69791811 (patch)
tree7e7230fbfbd1621cf6be110427e1b6f16fd8a4b5 /builtin/reflog.c
parent3d27b9b005f26b107227fc18b6648df329daee97 (diff)
downloadgit-99885bc0ef0013a8979ad8cefe56360e69791811.zip
git-99885bc0ef0013a8979ad8cefe56360e69791811.tar.gz
git-99885bc0ef0013a8979ad8cefe56360e69791811.tar.bz2
reflog: add missing single quote to error message
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>
Diffstat (limited to 'builtin/reflog.c')
-rw-r--r--builtin/reflog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/reflog.c b/builtin/reflog.c
index 44700f9..177e0ac 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;
}