Browse Source

Use '.' directly

Signed-off-by: Wang Long <long.wanglong@huawei.com>
Wang Long 8 years ago
parent
commit
2b7f7e9aff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cmd/docker/docker.go

+ 1 - 1
cmd/docker/docker.go

@@ -79,7 +79,7 @@ func noArgs(cmd *cobra.Command, args []string) error {
 		return nil
 		return nil
 	}
 	}
 	return fmt.Errorf(
 	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() {
 func main() {