1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Missing line feed after accepting node

Avoids
```
root@swarmatorium:~# docker node accept 3dnh6k13o44np9fwl83e7gh80
Node 3dnh6k13o44np9fwl83e7gh80 accepted in the swarm.root@swarmatorium:~#
```

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack 2016-06-17 15:49:35 +01:00
parent 8f9c7fab24
commit c34d752419

View file

@ -33,7 +33,7 @@ func runAccept(dockerCli *client.DockerCli, flags *pflag.FlagSet, args []string)
}); err != nil { }); err != nil {
return err return err
} }
fmt.Fprintf(dockerCli.Out(), "Node %s accepted in the swarm.", id) fmt.Fprintf(dockerCli.Out(), "Node %s accepted in the swarm.\n", id)
} }
return nil return nil