Skip to content

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
blueelvis committed Aug 5, 2019
1 parent 2f2a446 commit d151c33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/minikube/cluster/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,10 +279,10 @@ func DeleteHost(api libmachine.API) error {
// Get the status of the host. Ensure that it exists before proceeding ahead.
status, err := GetHostStatus(api)
if err != nil {
exit.WithCodeT(exit.Failure,"Unable to get the status of the cluster.")
exit.WithCodeT(exit.Failure, "Unable to get the status of the cluster.")
}
if status == state.None.String() {
return mcnerror.ErrHostDoesNotExist{Name:host.Name}
return mcnerror.ErrHostDoesNotExist{Name: host.Name}
}

// This is slow if SSH is not responding, but HyperV hangs otherwise, See issue #2914
Expand Down

0 comments on commit d151c33

Please sign in to comment.