diff options
Diffstat (limited to 'cmd/podman/unpause.go')
-rw-r--r-- | cmd/podman/unpause.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/unpause.go b/cmd/podman/unpause.go index a7ef65f85..6571dff4e 100644 --- a/cmd/podman/unpause.go +++ b/cmd/podman/unpause.go @@ -5,6 +5,7 @@ import ( "os" "github.com/pkg/errors" + "github.com/projectatomic/libpod/cmd/podman/libpodruntime" "github.com/urfave/cli" ) @@ -24,7 +25,7 @@ var ( ) func unpauseCmd(c *cli.Context) error { - runtime, err := getRuntime(c) + runtime, err := libpodruntime.GetRuntime(c) if err != nil { return errors.Wrapf(err, "could not get runtime") } |