fix: use fmt.Fprintln to print workspaces table (#1122)

This commit is contained in:
Colin Adler
2022-04-24 23:04:34 -05:00
committed by GitHub
parent a6ea99541e
commit abc13c5a92

View File

@ -71,7 +71,7 @@ func workspaceList() *cobra.Command {
workspace.Outdated, workspace.Outdated,
}) })
} }
_, err = fmt.Fprintf(cmd.OutOrStdout(), tableWriter.Render()) _, err = fmt.Fprintln(cmd.OutOrStdout(), tableWriter.Render())
return err return err
}, },
} }