From cc37942a6e69a4b1b67336888743a1b381754175 Mon Sep 17 00:00:00 2001 From: Wang Long Date: Fri, 11 Nov 2016 10:22:32 +0800 Subject: [PATCH] Use '.' directly Signed-off-by: Wang Long Upstream-commit: 076bfc0647de666cf04c40c506dcfe08ac90ebf3 Component: cli --- components/cli/docker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cli/docker.go b/components/cli/docker.go index 18cd0e833c..1978fc33bc 100644 --- a/components/cli/docker.go +++ b/components/cli/docker.go @@ -79,7 +79,7 @@ func noArgs(cmd *cobra.Command, args []string) error { return nil } return fmt.Errorf( - "docker: '%s' is not a docker command.\nSee 'docker --help'%s", args[0], ".") + "docker: '%s' is not a docker command.\nSee 'docker --help'.", args[0]) } func main() {