Merge branch 'ah/reflog-typofix-in-error'
authorJunio C Hamano <gitster@pobox.com>
Tue, 1 Sep 2015 23:31:18 +0000 (16:31 -0700)
committerJunio 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
index 7ed0e8501c149312676c0bce6fa52372a11b6fff..f96ca2a27dcb9ac6daa3aa110ff657981296502a 100644 (file)
@@ -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;
 }