diff options
Diffstat (limited to 'cmd/podman/history.go')
-rw-r--r-- | cmd/podman/history.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/history.go b/cmd/podman/history.go index 51ad0edcb..4f3867d34 100644 --- a/cmd/podman/history.go +++ b/cmd/podman/history.go @@ -11,6 +11,7 @@ import ( "github.com/opencontainers/image-spec/specs-go/v1" "github.com/pkg/errors" "github.com/projectatomic/libpod/cmd/podman/formats" + "github.com/projectatomic/libpod/cmd/podman/libpodruntime" "github.com/urfave/cli" ) @@ -83,7 +84,7 @@ func historyCmd(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") } |