Fix error message formatting to be consistent
This commit is contained in:
parent
29ebe1cee3
commit
a65f578c6d
|
|
@ -173,7 +173,7 @@ func (manifest *Manifest2822) AddEntry(entry Manifest2822Entry) error {
|
|||
|
||||
for _, tag := range entry.Tags {
|
||||
if otherEntry := manifest.GetTag(tag); otherEntry != nil {
|
||||
return fmt.Errorf("Tags %q includes duplicate tag %q (duplicated in %q)", entry.TagsString(), tag, otherEntry.TagsString())
|
||||
return fmt.Errorf("Tags %q includes duplicate tag: %q (duplicated in %q)", entry.TagsString(), tag, otherEntry.TagsString())
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue