summaryrefslogtreecommitdiff
path: root/cmd/podman/images/inspect.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-05-19 18:45:03 -0400
committerGitHub <noreply@github.com>2022-05-19 18:45:03 -0400
commit1916fe22a932183e0847e9f7b087f6ece4d7c48c (patch)
tree49a030b80ad533a4befae84274e9a72dd99ad639 /cmd/podman/images/inspect.go
parent913caaa9b1de2b63692c9bae15120208194c9eb3 (diff)
parent9c9fc96d2756ba6ff1ef3a2e8301992d4b5ab189 (diff)
downloadpodman-1916fe22a932183e0847e9f7b087f6ece4d7c48c.tar.gz
podman-1916fe22a932183e0847e9f7b087f6ece4d7c48c.tar.bz2
podman-1916fe22a932183e0847e9f7b087f6ece4d7c48c.zip
Merge pull request #14272 from Luap99/completion2
shell completion: use more constants in the code
Diffstat (limited to 'cmd/podman/images/inspect.go')
-rw-r--r--cmd/podman/images/inspect.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/images/inspect.go b/cmd/podman/images/inspect.go
index 22c404b3f..310f8cda8 100644
--- a/cmd/podman/images/inspect.go
+++ b/cmd/podman/images/inspect.go
@@ -38,6 +38,6 @@ func init() {
}
func inspectExec(cmd *cobra.Command, args []string) error {
- inspectOpts.Type = inspect.ImageType
+ inspectOpts.Type = common.ImageType
return inspect.Inspect(args, *inspectOpts)
}