aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/spf13/pflag/bool.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/spf13/pflag/bool.go')
-rw-r--r--vendor/github.com/spf13/pflag/bool.go7
1 files changed, 2 insertions, 5 deletions
diff --git a/vendor/github.com/spf13/pflag/bool.go b/vendor/github.com/spf13/pflag/bool.go
index d272e40..c4c5c0b 100644
--- a/vendor/github.com/spf13/pflag/bool.go
+++ b/vendor/github.com/spf13/pflag/bool.go
@@ -1,9 +1,6 @@
package pflag
-import (
- "fmt"
- "strconv"
-)
+import "strconv"
// optional interface to indicate boolean flags that can be
// supplied without "=value" text
@@ -30,7 +27,7 @@ func (b *boolValue) Type() string {
return "bool"
}
-func (b *boolValue) String() string { return fmt.Sprintf("%v", *b) }
+func (b *boolValue) String() string { return strconv.FormatBool(bool(*b)) }
func (b *boolValue) IsBoolFlag() bool { return true }