node: add a missing newline

It did work in staging! ... with a single node

commit-id:bc375534
This commit is contained in:
Leo 2021-12-16 17:03:34 +01:00
parent 939ea5d28d
commit ce85d8b717
1 changed files with 2 additions and 0 deletions

View File

@ -158,6 +158,8 @@ func runListNodes(cmd *cobra.Command, args []string) {
for _, field := range fields {
_, _ = fmt.Fprintf(w, "%s\t", field)
}
_, _ = fmt.Fprintln(w)
}
w.Flush()