From 7650b916b912c6f62bec89c61c53d1f20aa75082 Mon Sep 17 00:00:00 2001 From: vaikas-google Date: Mon, 9 Nov 2015 13:59:20 -0800 Subject: [PATCH] add newlines to listing types --- dm/dm.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dm/dm.go b/dm/dm.go index 812a40e56..3952f669b 100644 --- a/dm/dm.go +++ b/dm/dm.go @@ -98,15 +98,15 @@ func main() { log.Fatalf("Cannot list %v err") } - fmt.Printf("Types:") + fmt.Printf("Types:\n") for _, t := range types { - fmt.Printf("%s:%s", t.Name, t.Version) + fmt.Printf("%s:%s\n", t.Name, t.Version) downloadURL, err := git.GetURL(t) if err != nil { log.Printf("Failed to get download URL for type %s:%s", t.Name, t.Version) } - fmt.Printf("\tdownload URL: %s", downloadURL) + fmt.Printf("\tdownload URL: %s\n", downloadURL) } case "describe": fmt.Printf("this feature is not yet implemented")