Skip to content

Commit

Permalink
new line without "\n". look nicer
Browse files Browse the repository at this point in the history
  • Loading branch information
yelinaung committed Apr 14, 2015
1 parent 5f7bd30 commit 3d080c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions play-info.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
Expand Down

0 comments on commit 3d080c8

Please sign in to comment.