From bddd5580ab01e164762e32b40eb8f1cdf81f3334 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Wed, 14 Oct 2020 13:46:18 -0400 Subject: Fix indentation for `podman pod inspect` Signed-off-by: Matthew Heon --- cmd/podman/pods/inspect.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd/podman/pods/inspect.go') diff --git a/cmd/podman/pods/inspect.go b/cmd/podman/pods/inspect.go index cad15d10f..142c8d270 100644 --- a/cmd/podman/pods/inspect.go +++ b/cmd/podman/pods/inspect.go @@ -64,6 +64,7 @@ func inspect(cmd *cobra.Command, args []string) error { if parse.MatchesJSONFormat(inspectOptions.Format) { enc := json.NewEncoder(os.Stdout) + enc.SetIndent("", " ") return enc.Encode(responses) } -- cgit v1.2.3-54-g00ecf