Skip to content

Commit 8409be1

Browse files
author
mfarah
committed
Removed debug printLn
1 parent c03c481 commit 8409be1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

yaml.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,7 @@ func readYaml(c *cli.Context, parsedData *map[interface{}]interface{}) {
117117
}
118118

119119
var rawData []byte
120-
fmt.Println("c.Args()[0]", c.Args()[0])
121-
if( c.Args()[0] == "-") {
120+
if c.Args()[0] == "-" {
122121
rawData = readStdin()
123122
} else {
124123
rawData = readFile(c.Args()[0])

0 commit comments

Comments
 (0)