print newline after content when using the JSON output option

closes #62
json_nl
Eric Chiang 8 years ago
parent 468df5e20d
commit b2695a68bf

@ -323,7 +323,7 @@ func (j JSONDisplayer) Display(nodes []*html.Node) {
if err != nil { if err != nil {
panic("Could not jsonify nodes") panic("Could not jsonify nodes")
} }
fmt.Printf("%s", data) fmt.Printf("%s\n", data)
} }
// Print the number of features returned // Print the number of features returned

Loading…
Cancel
Save