Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/git/localrepo/objects.go')
-rw-r--r--internal/git/localrepo/objects.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/git/localrepo/objects.go b/internal/git/localrepo/objects.go
index 51c6be69b..beb485f1c 100644
--- a/internal/git/localrepo/objects.go
+++ b/internal/git/localrepo/objects.go
@@ -81,7 +81,7 @@ func FormatTag(objectID, objectType string, tagName, userName, userEmail, tagBod
maxHeaderLines := 4
actualHeaderLines := strings.Count(tagBuf, "\n")
if actualHeaderLines != maxHeaderLines {
- return "", fmt.Errorf("failed to format tag header for mktag: got %d lines, expected %d, \\n overflow!", actualHeaderLines, maxHeaderLines)
+ return "", fmt.Errorf("failed to format tag header for mktag: got %d lines, expected %d, \\n overflow", actualHeaderLines, maxHeaderLines)
}
tagBuf += "\n"