diff options
author | baude <bbaude@redhat.com> | 2018-10-29 12:08:41 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2018-10-29 12:08:41 -0500 |
commit | 13b05ea47648ee9a8d77de21d6558907fd3d3666 (patch) | |
tree | cce45d67a29c51a67732a5477cafca714d8e0c4e | |
parent | aef9d56ae20e34447a69e19613629b8281a78502 (diff) | |
download | podman-13b05ea47648ee9a8d77de21d6558907fd3d3666.tar.gz podman-13b05ea47648ee9a8d77de21d6558907fd3d3666.tar.bz2 podman-13b05ea47648ee9a8d77de21d6558907fd3d3666.zip |
Use two spaces to pad PS fields
Ed has asked that we revert to using two spaces for padding between PS fields. I assume
this is for docker autotests.
Signed-off-by: baude <bbaude@redhat.com>
-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 |