Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'ah/reflog-typofix-in-error'
author
Junio C Hamano
<gitster@pobox.com>
Tue, 1 Sep 2015 23:31:18 +0000
(16:31 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Tue, 1 Sep 2015 23:31:18 +0000
(16:31 -0700)
Error string fix.
* ah/reflog-typofix-in-error:
reflog: add missing single quote to error message
builtin/reflog.c
patch
|
blob
|
history
raw
(from parent 1:
0b20a46
)
diff --git
a/builtin/reflog.c
b/builtin/reflog.c
index 7ed0e8501c149312676c0bce6fa52372a11b6fff..f96ca2a27dcb9ac6daa3aa110ff657981296502a 100644
(file)
--- 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;
}