Skip to content

Commit

Permalink
manageVM CLI: Added spacing while printing machine details (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
deitch authored and prashanth26 committed Dec 19, 2018
1 parent 17f6cdd commit f883244
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/machine-controller-manager-cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ func main() {
if err != nil {
log.Fatalf("Could not create %s : %s", machineName, err)
}
fmt.Printf("Machine id: %s", id)
fmt.Printf("Name: %s", name)
fmt.Printf("Machine id: %s\n", id)
fmt.Printf("Name: %s\n", name)
} else {
err = driver.Delete()
if err != nil {
Expand Down

0 comments on commit f883244

Please sign in to comment.