From abc13c5a92689906aabc40aa0e50f29049ee8428 Mon Sep 17 00:00:00 2001 From: Colin Adler Date: Sun, 24 Apr 2022 23:04:34 -0500 Subject: [PATCH] fix: use fmt.Fprintln to print workspaces table (#1122) --- cli/workspacelist.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/workspacelist.go b/cli/workspacelist.go index 91416c502b..06ebd87203 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 }, }