From c71c13366f6cac1845f66d2727fcf2b03095ded7 Mon Sep 17 00:00:00 2001 From: Juan Font Alonso Date: Sat, 1 May 2021 20:04:03 +0200 Subject: [PATCH] Minor fix --- cmd/headscale/cli/nodes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/headscale/cli/nodes.go b/cmd/headscale/cli/nodes.go index c6819475..08b7e4d8 100644 --- a/cmd/headscale/cli/nodes.go +++ b/cmd/headscale/cli/nodes.go @@ -53,7 +53,7 @@ var ListNodesCmd = &cobra.Command{ log.Fatalf("Error getting nodes: %s", err) } - fmt.Printf("name\tlast seen") + fmt.Printf("name\t\tlast seen\n") for _, m := range *machines { fmt.Printf("%s\t%s\n", m.Name, m.LastSeen.Format("2006-01-02 15:04:05")) }