diff options
author | baude <bbaude@redhat.com> | 2018-11-27 10:33:19 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2018-11-28 09:26:24 -0600 |
commit | 61d4db480650c57d383990750ed87990e903f4da (patch) | |
tree | 493a2836ecaf14ef708cf53eb96c292db37c1152 /libpod/container.go | |
parent | effd63d6d5c2541f09745261a1e9205fa531e526 (diff) | |
download | podman-61d4db480650c57d383990750ed87990e903f4da.tar.gz podman-61d4db480650c57d383990750ed87990e903f4da.tar.bz2 podman-61d4db480650c57d383990750ed87990e903f4da.zip |
Fix golang formatting issues
Whe running unittests on newer golang versions, we observe failures with some
formatting types when no declared correctly.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'libpod/container.go')
-rw-r--r-- | libpod/container.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/container.go b/libpod/container.go index a8a58f4d8..b6155a809 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -829,7 +829,7 @@ func (c *Container) IPs() ([]net.IPNet, error) { } if !c.config.CreateNetNS { - return nil, errors.Wrapf(ErrInvalidArg, "container %s network namespace is not managed by libpod") + return nil, errors.Wrapf(ErrInvalidArg, "container %s network namespace is not managed by libpod", c.ID()) } ips := make([]net.IPNet, 0) @@ -857,7 +857,7 @@ func (c *Container) Routes() ([]types.Route, error) { } if !c.config.CreateNetNS { - return nil, errors.Wrapf(ErrInvalidArg, "container %s network namespace is not managed by libpod") + return nil, errors.Wrapf(ErrInvalidArg, "container %s network namespace is not managed by libpod", c.ID()) } routes := make([]types.Route, 0) |