Skip to content

Commit abc13c5

Browse files
authored
fix: use fmt.Fprintln to print workspaces table (coder#1122)
1 parent a6ea995 commit abc13c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/workspacelist.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func workspaceList() *cobra.Command {
7171
workspace.Outdated,
7272
})
7373
}
74-
_, err = fmt.Fprintf(cmd.OutOrStdout(), tableWriter.Render())
74+
_, err = fmt.Fprintln(cmd.OutOrStdout(), tableWriter.Render())
7575
return err
7676
},
7777
}

0 commit comments

Comments
 (0)