Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
delete_refs(): make error message more generic
[gitweb.git]
/
refs.c
diff --git
a/refs.c
b/refs.c
index 72e51a9675c9226057b1df31ac55af7642a9e276..cebabc5cd4bce8615487f512f73db704c7b1b9fb 100644
(file)
--- a/
refs.c
+++ b/
refs.c
@@
-2843,7
+2843,7
@@
int delete_refs(struct string_list *refnames)
const char *refname = refnames->items[i].string;
if (delete_ref(refname, NULL, 0))
- result |= error(_("
Could not remove branch
%s"), refname);
+ result |= error(_("
could not remove reference
%s"), refname);
}
return result;