summaryrefslogtreecommitdiff
path: root/libpod/container_internal.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-11-27 10:33:19 -0600
committerbaude <bbaude@redhat.com>2018-11-28 09:26:24 -0600
commit61d4db480650c57d383990750ed87990e903f4da (patch)
tree493a2836ecaf14ef708cf53eb96c292db37c1152 /libpod/container_internal.go
parenteffd63d6d5c2541f09745261a1e9205fa531e526 (diff)
downloadpodman-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_internal.go')
-rw-r--r--libpod/container_internal.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go
index 700773e7f..b616e0a07 100644
--- a/libpod/container_internal.go
+++ b/libpod/container_internal.go
@@ -1191,7 +1191,7 @@ func (c *Container) setupOCIHooks(ctx context.Context, config *spec.Spec) (exten
if c.runtime.config.HooksDirNotExistFatal || !os.IsNotExist(err) {
return nil, err
}
- logrus.Warnf("failed to load hooks: {}", err)
+ logrus.Warnf("failed to load hooks: %q", err)
return nil, nil
}
hooks, err := manager.Hooks(config, c.Spec().Annotations, len(c.config.UserVolumes) > 0)