1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00

Merge pull request #28277 from datawolf/small-fix

Use '.' directly
Upstream-commit: 82130b725dd2a13839aa45b0d99870bd8bda0f47
Component: engine
This commit is contained in:
Victor Vieux
2016-11-10 19:00:21 -08:00
committed by GitHub

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