Fix PairFlag

This commit is contained in:
Blallo 2021-04-03 23:23:14 +02:00
parent 5240185457
commit b3157dcd99
No known key found for this signature in database
GPG key ID: 0CBE577C9B72DC3F

View file

@ -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 {