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

Use '.' directly

Signed-off-by: Wang Long <long.wanglong@huawei.com>
This commit is contained in:
Wang Long 2016-11-11 10:22:32 +08:00
parent bd78374618
commit 2b7f7e9aff

View file

@ -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() {