Skip to content

Commit a65f578

Browse files
committed
Fix error message formatting to be consistent
1 parent 29ebe1c commit a65f578

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manifest/rfc2822.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ func (manifest *Manifest2822) AddEntry(entry Manifest2822Entry) error {
173173

174174
for _, tag := range entry.Tags {
175175
if otherEntry := manifest.GetTag(tag); otherEntry != nil {
176-
return fmt.Errorf("Tags %q includes duplicate tag %q (duplicated in %q)", entry.TagsString(), tag, otherEntry.TagsString())
176+
return fmt.Errorf("Tags %q includes duplicate tag: %q (duplicated in %q)", entry.TagsString(), tag, otherEntry.TagsString())
177177
}
178178
}
179179

0 commit comments

Comments
 (0)