Fix error message formatting to be consistent

This commit is contained in:
Tianon Gravi 2017-01-24 13:12:29 -08:00
parent 29ebe1cee3
commit a65f578c6d
1 changed files with 1 additions and 1 deletions

View File

@ -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())
}
}