Removed debug printLn

This commit is contained in:
mfarah 2015-10-05 16:01:39 +11:00
parent c03c4813d4
commit 8409be1cdf
1 changed files with 1 additions and 2 deletions

View File

@ -117,8 +117,7 @@ func readYaml(c *cli.Context, parsedData *map[interface{}]interface{}) {
}
var rawData []byte
fmt.Println("c.Args()[0]", c.Args()[0])
if( c.Args()[0] == "-") {
if c.Args()[0] == "-" {
rawData = readStdin()
} else {
rawData = readFile(c.Args()[0])