diff options
Diffstat (limited to 'cmd/podman/images.go')
-rw-r--r-- | cmd/podman/images.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/images.go b/cmd/podman/images.go index 076c5956d..305d2f11e 100644 --- a/cmd/podman/images.go +++ b/cmd/podman/images.go @@ -10,6 +10,7 @@ import ( digest "github.com/opencontainers/go-digest" "github.com/pkg/errors" "github.com/projectatomic/libpod/cmd/podman/formats" + "github.com/projectatomic/libpod/cmd/podman/libpodruntime" "github.com/projectatomic/libpod/libpod" "github.com/projectatomic/libpod/libpod/image" "github.com/urfave/cli" @@ -90,7 +91,7 @@ func imagesCmd(c *cli.Context) error { return err } - runtime, err := getRuntime(c) + runtime, err := libpodruntime.GetRuntime(c) if err != nil { return errors.Wrapf(err, "Could not get runtime") } |