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

Merge pull request #244 from aboch/sc

Fix dnet service cli help o/p
This commit is contained in:
Jana Radhakrishnan 2015-06-02 15:10:54 -07:00
commit d1d854e5da

View file

@ -309,7 +309,7 @@ func serviceUsage(chain string) string {
help := "Commands:\n"
for _, cmd := range serviceCommands {
help += fmt.Sprintf(" %-10.10s%s\n", cmd, cmd.description)
help += fmt.Sprintf(" %-10.10s%s\n", cmd.name, cmd.description)
}
help += fmt.Sprintf("\nRun '%s service COMMAND --help' for more information on a command.", chain)