From 3d080c85e22962bead9bd06aeec088b7c2d0d11b Mon Sep 17 00:00:00 2001 From: Ye Lin Aung Date: Wed, 15 Apr 2015 03:57:07 +0630 Subject: [PATCH] new line without "\n". look nicer --- play-info.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/play-info.go b/play-info.go index ceb77d0..59cb7f1 100644 --- a/play-info.go +++ b/play-info.go @@ -29,12 +29,12 @@ func main() { if len(arg) == 0 { fmt.Println(ansi.Color("Error : Please enter package name", "red")) } else { - fmt.Println("\n") + fmt.Println("") pkg := c.Args()[0] fmt.Printf(ansi.Color("Processing Results for \"%s\"\n", "green"), pkg) fmt.Println(divider) getData(c.Args()[0]) - fmt.Println("\n") + fmt.Println("") fmt.Println(divider) } }