]> git.ipfire.org Git - thirdparty/git.git/commitdiff
reflog: add missing single quote to error message
authorAlex Henrie <alexhenrie24@gmail.com>
Thu, 27 Aug 2015 04:26:02 +0000 (22:26 -0600)
committerJunio 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

index 44700f92432adf9545d160e698fd57aa3cc07d29..177e0acd2003995064fd9c83803a43c5336ef143 100644 (file)
@@ -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;
 }