From fcc5e15146cad2fcdfa6b3d41598902b8aa5ae79 Mon Sep 17 00:00:00 2001 From: Maku Date: Fri, 9 Oct 2020 18:10:53 -0400 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)