remove redundant Sprintf

pull/1720/head
Frank 2020-04-30 10:48:12 -05:00
parent 690a4ca7a4
commit a18d94e5f9
1 changed files with 1 additions and 3 deletions

View File

@ -1,8 +1,6 @@
package cmds
import (
"fmt"
"github.com/urfave/cli"
)
@ -115,7 +113,7 @@ func NewServerCommand(action func(*cli.Context) error) cli.Command {
},
cli.StringFlag{
Name: "flannel-backend",
Usage: fmt.Sprintf("(networking) One of 'none', 'vxlan', 'ipsec', 'host-gw', or 'wireguard'"),
Usage: "(networking) One of 'none', 'vxlan', 'ipsec', 'host-gw', or 'wireguard'",
Destination: &ServerConfig.FlannelBackend,
Value: "vxlan",
},