diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-10-29 14:49:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-29 14:49:33 -0700 |
commit | 60ba26ab2139e6ab5d50138bd36494ef323e19a1 (patch) | |
tree | cce45d67a29c51a67732a5477cafca714d8e0c4e | |
parent | aef9d56ae20e34447a69e19613629b8281a78502 (diff) | |
parent | 13b05ea47648ee9a8d77de21d6558907fd3d3666 (diff) | |
download | podman-60ba26ab2139e6ab5d50138bd36494ef323e19a1.tar.gz podman-60ba26ab2139e6ab5d50138bd36494ef323e19a1.tar.bz2 podman-60ba26ab2139e6ab5d50138bd36494ef323e19a1.zip |
Merge pull request #1722 from baude/ps2space
Use two spaces to pad PS fields
-rw-r--r-- | cmd/podman/ps.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/ps.go b/cmd/podman/ps.go index d63618e58..00620b95b 100644 --- a/cmd/podman/ps.go +++ b/cmd/podman/ps.go @@ -329,7 +329,7 @@ func psCmd(c *cli.Context) error { } // Define a tab writer with stdout as the output - w := tabwriter.NewWriter(os.Stdout, 0, 0, 1, ' ', 0) + w := tabwriter.NewWriter(os.Stdout, 0, 0, 2, ' ', 0) defer w.Flush() // Output standard PS headers |