Change error message

Signed-off-by: Eric Sage <eric.david.sage@gmail.com>
This commit is contained in:
Eric Sage 2015-07-13 17:45:46 -04:00
parent 8a77935cd4
commit b75b5d618c
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ func parseFilters(filters []string) (FilterOptions, error) {
for _, f := range filters {
kv := strings.SplitN(f, "=", 2)
if len(kv) != 2 {
return options, fmt.Errorf("Unupported filter syntax, please use help ls for details on correct usage.")
return options, fmt.Errorf("Unsupported filter syntax.")
}
key, value := kv[0], kv[1]