From 6d96ef30934d36e4513dce1624a5bad0c82692ea Mon Sep 17 00:00:00 2001 From: Colin Adler Date: Sun, 24 Apr 2022 22:47:08 -0500 Subject: [PATCH] fix: use fmt.Fprintln to print workspaces table --- cli/workspacelist.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/workspacelist.go b/cli/workspacelist.go index 91416c502b0e7..06ebd87203339 100644 --- a/cli/workspacelist.go +++ b/cli/workspacelist.go @@ -71,7 +71,7 @@ func workspaceList() *cobra.Command { workspace.Outdated, }) } - _, err = fmt.Fprintf(cmd.OutOrStdout(), tableWriter.Render()) + _, err = fmt.Fprintln(cmd.OutOrStdout(), tableWriter.Render()) return err }, }