diff options
Diffstat (limited to 'cmd/podman/stats.go')
-rw-r--r-- | cmd/podman/stats.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/stats.go b/cmd/podman/stats.go index 6a8681028..06e948d8c 100644 --- a/cmd/podman/stats.go +++ b/cmd/podman/stats.go @@ -10,6 +10,7 @@ import ( "github.com/docker/go-units" "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/urfave/cli" ) @@ -78,7 +79,7 @@ func statsCmd(c *cli.Context) error { return errors.Errorf("--all, --latest and containers cannot be used together") } - runtime, err := getRuntime(c) + runtime, err := libpodruntime.GetRuntime(c) if err != nil { return errors.Wrapf(err, "could not get runtime") } |