Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
reflog: add missing single quote to error message
author
Alex Henrie
<alexhenrie24@gmail.com>
Thu, 27 Aug 2015 04:26:02 +0000
(22:26 -0600)
committer
Junio C Hamano
<gitster@pobox.com>
Fri, 28 Aug 2015 16:42:13 +0000
(09:42 -0700)
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>
builtin/reflog.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
3d27b9b
)
diff --git
a/builtin/reflog.c
b/builtin/reflog.c
index 44700f92432adf9545d160e698fd57aa3cc07d29..177e0acd2003995064fd9c83803a43c5336ef143 100644
(file)
--- 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;
}