diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-02-27 15:36:36 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-01 21:17:51 +0000 |
commit | 83d7ae6506f7aaf1f7d543412a148b4bf4cd6657 (patch) | |
tree | 229b1f3b746541ce6c269e6fe73661795b6d675e /libpod/container_inspect.go | |
parent | 780baec1d9fc6f733d06fafddb53655784e2f6f1 (diff) | |
download | podman-83d7ae6506f7aaf1f7d543412a148b4bf4cd6657.tar.gz podman-83d7ae6506f7aaf1f7d543412a148b4bf4cd6657.tar.bz2 podman-83d7ae6506f7aaf1f7d543412a148b4bf4cd6657.zip |
Fix gofmt & golint
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #412
Approved by: baude
Diffstat (limited to 'libpod/container_inspect.go')
-rw-r--r-- | libpod/container_inspect.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_inspect.go b/libpod/container_inspect.go index de5770f8f..3a1728826 100644 --- a/libpod/container_inspect.go +++ b/libpod/container_inspect.go @@ -21,7 +21,7 @@ func (c *Container) getContainerInspectData(size bool, driverData *inspect.Data) } execIDs := []string{} - for id, _ := range c.state.ExecSessions { + for id := range c.state.ExecSessions { execIDs = append(execIDs, id) } |