1
0
mirror of https://github.com/docker/cli.git synced 2026-01-18 08:21:31 +03:00

Merge pull request #235 from vdemeester/234-fix-warn

Add a line break after warning 👼
Upstream-commit: 298d486d8b
Component: cli
This commit is contained in:
Sebastiaan van Stijn
2017-06-24 02:17:26 -07:00
committed by GitHub

View File

@@ -63,7 +63,7 @@ func runRemove(dockerCli command.Cli, opts removeOptions) error {
return err
}
if versions.LessThan(version.APIVersion, "1.30") {
fmt.Fprintf(dockerCli.Err(), `WARNING: ignoring "configs" (requires API version 1.30, but the Docker daemon API version is %s)`, version.APIVersion)
fmt.Fprintf(dockerCli.Err(), "WARNING: ignoring \"configs\" (requires API version 1.30, but the Docker daemon API version is %s)\n", version.APIVersion)
} else {
configs, err = getStackConfigs(ctx, client, namespace)
if err != nil {