newlines on all container detaches

Signed-off-by: Parker Van Roy <pvanroy@redhat.com>
This commit is contained in:
Parker Van Roy 2020-10-07 15:28:43 -04:00
parent 9ae873e60e
commit ec93468f3a

View file

@ -582,6 +582,7 @@ func (ic *ContainerEngine) ContainerAttach(ctx context.Context, nameOrID string,
if err != nil && errors.Cause(err) != define.ErrDetach {
return errors.Wrapf(err, "error attaching to container %s", ctr.ID())
}
os.Stdout.WriteString("\n")
return nil
}