diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-06 02:05:39 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-06 02:05:39 -0500 |
commit | 61f7d1295fb427f75861e37856c3e403f7f98f39 (patch) | |
tree | 546b9919c7ace286f538d5a43353223849e089dc | |
parent | b2e9cf4ebe40675cb183789791de51a6ee76a618 (diff) | |
download | fork-ledger-61f7d1295fb427f75861e37856c3e403f7f98f39.tar.gz fork-ledger-61f7d1295fb427f75861e37856c3e403f7f98f39.tar.bz2 fork-ledger-61f7d1295fb427f75861e37856c3e403f7f98f39.zip |
Changed dividers output by --options
-rw-r--r-- | src/global.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/global.cc b/src/global.cc index 2103e32c..2383dd84 100644 --- a/src/global.cc +++ b/src/global.cc @@ -255,7 +255,7 @@ int global_scope_t::execute_command_wrapper(strings_list args, bool at_repl) void global_scope_t::report_options(report_t& report, std::ostream& out) { - out << "<=============================================================================>" + out << "===============================================================================" << std::endl; out << "[Global scope options]" << std::endl; @@ -272,7 +272,7 @@ void global_scope_t::report_options(report_t& report, std::ostream& out) out << std::endl << "[Report scope options]" << std::endl; report.report_options(out); - out << "<=============================================================================>" + out << "===============================================================================" << std::endl; } |