Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 9432459

Browse files
committed
fixup! Add list users command
Change-Id: I74d5a3daec28dc93cc00cb4b3f97b2d205c6a67d
1 parent 0cf451b commit 9432459

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/coder/users.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func (cmd *listCmd) Run(fl *pflag.FlagSet) {
5858

5959
switch cmd.outputFmt {
6060
case "human":
61-
w := tabwriter.NewWriter(os.Stdout, 0, 0, 3, ' ', tabwriter.AlignRight)
61+
w := tabwriter.NewWriter(os.Stdout, 0, 0, 3, ' ', 0)
6262
for _, u := range users {
6363
_, err = fmt.Fprintln(w, tabDelimited(u))
6464
if err != nil {

0 commit comments

Comments
 (0)