diff options
Diffstat (limited to 'fun')
-rw-r--r-- | fun/clbot/clbot.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fun/clbot/clbot.go b/fun/clbot/clbot.go index e5a5990ef25a..72a7f5634332 100644 --- a/fun/clbot/clbot.go +++ b/fun/clbot/clbot.go @@ -51,7 +51,7 @@ func init() { type stringSetFlag map[string]bool func (f stringSetFlag) String() string { - return fmt.Sprintf("%q", map[string]bool(f)) + return fmt.Sprintf("%v", map[string]bool(f)) } func (f stringSetFlag) Set(s string) error { if s == "" { |