diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2017-11-02 19:35:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-02 19:35:33 -0400 |
commit | 7bb1d240281e95aeb5eb5f761823e766d2804683 (patch) | |
tree | c03a19ce82df57651218a0133d571c7887ce8b88 /libkpod/container.go | |
parent | f0f5b51ff27d8eec790f2d5fc12c28c536149bb7 (diff) | |
parent | 6e37df18ef4e2750e954bf64f7dc46d57dcade3a (diff) | |
download | podman-7bb1d240281e95aeb5eb5f761823e766d2804683.tar.gz podman-7bb1d240281e95aeb5eb5f761823e766d2804683.tar.bz2 podman-7bb1d240281e95aeb5eb5f761823e766d2804683.zip |
Merge pull request #6 from rhatdan/papr
Add Papr support
Diffstat (limited to 'libkpod/container.go')
-rw-r--r-- | libkpod/container.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libkpod/container.go b/libkpod/container.go index 7afcfa009..e0ff348d0 100644 --- a/libkpod/container.go +++ b/libkpod/container.go @@ -4,10 +4,10 @@ import ( "fmt" cstorage "github.com/containers/storage" + "github.com/pkg/errors" "github.com/projectatomic/libpod/libkpod/sandbox" "github.com/projectatomic/libpod/oci" "github.com/projectatomic/libpod/pkg/registrar" - "github.com/pkg/errors" ) // GetStorageContainer searches for a container with the given name or ID in the given store |