We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c692c0b commit 6c9d99dCopy full SHA for 6c9d99d
client/v2/autocli/flag/enum.go
@@ -63,7 +63,7 @@ func (e *enumValue) Set(s string) error {
63
validValues = append(validValues, k)
64
}
65
66
- return fmt.Errorf("%s is not a valid value for enum %s. Valid values are: %s.", s, e.enum.FullName(), strings.Join(validValues, ", "))
+ return fmt.Errorf("%s is not a valid value for enum %s. Valid values are: %s", s, e.enum.FullName(), strings.Join(validValues, ", "))
67
68
e.value = valDesc.Number()
69
return nil
0 commit comments