Skip to content

Commit

Permalink
Fix argument name
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Olenik committed Oct 31, 2017
1 parent 748edaf commit 8676e0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Options:
--version Show version
`
arguments, _ := docopt.Parse(usage, nil, true, version, false)
queryNodes := query.Parse(arguments["<nodePath>"].(string))
queryNodes := query.Parse(arguments["<node>"].(string))

raw := arguments["--raw"].(bool)
inPlace := arguments["--in-place"].(bool)
Expand Down

0 comments on commit 8676e0e

Please sign in to comment.