diff --git a/cmd/podman/ps.go b/cmd/podman/ps.go index 098d18fa4d..a9802d27fb 100644 --- a/cmd/podman/ps.go +++ b/cmd/podman/ps.go @@ -646,7 +646,7 @@ func printFormat(format string, containers []shared.PsContainerOutput) error { } func dumpJSON(containers []shared.PsContainerOutput) error { - b, err := json.MarshalIndent(containers, "", "\t") + b, err := json.MarshalIndent(containers, "", " ") if err != nil { return err }