Browse Source

Fix PairFlag

Blallo 3 years ago
parent
commit
b3157dcd99
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cli/utils.go

+ 1 - 1
cli/utils.go

@@ -64,7 +64,7 @@ func (p Pair) String() string {
 }
 
 func (pf PairFlag) String() string {
-	return pf.Pair.String()
+	return fmt.Sprint(pf.Pair)
 }
 
 func (pf PairFlag) Set(s string) error {