Merge pull request #6252 from krousey/string_format_cleanup

Fixing a lot of string formatting issues
This commit is contained in:
Victor Marmol
2015-03-31 16:57:36 -07:00
26 changed files with 66 additions and 66 deletions

View File

@@ -110,7 +110,7 @@ func parseLabels(spec []string) (map[string]string, []string, error) {
} else if strings.HasSuffix(labelSpec, "-") {
remove = append(remove, labelSpec[:len(labelSpec)-1])
} else {
return nil, nil, fmt.Errorf("unknown label spec: %v")
return nil, nil, fmt.Errorf("unknown label spec: %v", labelSpec)
}
}
for _, removeLabel := range remove {