summaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.cc b/src/main.cc
index fbda5c3d..5f7882bf 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -271,8 +271,10 @@ static int read_and_report(ledger::report_t * report, int argc, char * argv[],
foreach (const value_t& value, xpath.find_all(xml_document, report)) {
if (value.is_xml_node()) {
value.as_xml_node()->print(std::cout);
- std::cout << std::endl;
+ } else {
+ std::cout << value;
}
+ std::cout << std::endl;
}
return 0;
}