From ce64bdbd9ffb5ee21f39d50e6a99c0f6596bfb6e Mon Sep 17 00:00:00 2001 From: Alessandro Boch Date: Tue, 2 Jun 2015 14:25:47 -0700 Subject: [PATCH] Fix dnet service cli help o/p Signed-off-by: Alessandro Boch --- libnetwork/client/service_experimental.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnetwork/client/service_experimental.go b/libnetwork/client/service_experimental.go index 02555fc197..5965d136f1 100644 --- a/libnetwork/client/service_experimental.go +++ b/libnetwork/client/service_experimental.go @@ -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)