From be9849b7480675bf915b2f50934ec71909922de8 Mon Sep 17 00:00:00 2001 From: spitts <25968054+makusu2@users.noreply.github.com> Date: Mon, 2 Nov 2020 17:39:51 -0500 Subject: [PATCH] Add space after "Device Name" to match "Device ID" --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index bf12e02..dbf55c8 100644 --- a/main.go +++ b/main.go @@ -86,7 +86,7 @@ func main() { if list { sources := getSources(paClient) for i := range sources { - fmt.Printf("Device Name:%s\nDevice ID: %s\n\n", sources[i].Name, sources[i].ID) + fmt.Printf("Device Name: %s\nDevice ID: %s\n\n", sources[i].Name, sources[i].ID) } os.Exit(0)