Skip to content

Commit

Permalink
Fix Errorf format
Browse files Browse the repository at this point in the history
  • Loading branch information
josedonizetti committed May 30, 2019
1 parent 0c367f4 commit cf7cfe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/drivers/kvm/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func (d *Driver) ensureNetwork() error {
func (d *Driver) createNetwork() error {

if d.Network == defaultPrivateNetworkName {
return fmt.Errorf("KVM network can't be named %v. This is the name of the private network created by minikube", defaultPrivateNetworkName)
return fmt.Errorf("KVM network can't be named %s. This is the name of the private network created by minikube", defaultPrivateNetworkName)
}

conn, err := getConnection()
Expand Down

0 comments on commit cf7cfe0

Please sign in to comment.