diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-07 22:50:27 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-07 22:50:27 -0400 |
commit | f857e10ce2f57410e5b13820595971cc4f9972ff (patch) | |
tree | 0c2937178840fb0f855a71c22901b198ab993d04 /src | |
parent | b662509ee95434702c0a0d1cf97f1c1295f06ec4 (diff) | |
download | fork-ledger-f857e10ce2f57410e5b13820595971cc4f9972ff.tar.gz fork-ledger-f857e10ce2f57410e5b13820595971cc4f9972ff.tar.bz2 fork-ledger-f857e10ce2f57410e5b13820595971cc4f9972ff.zip |
Whitespace fix to the print report.
Diffstat (limited to 'src')
-rw-r--r-- | src/report.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/report.cc b/src/report.cc index 0eb36424..6d045a73 100644 --- a/src/report.cc +++ b/src/report.cc @@ -58,11 +58,11 @@ report_t::report_t(session_t& _session) : session(_session) "%48|%-.38A %22.108t %!22.132T\n"); HANDLER(print_format_).on( - "%(display_date)%(entry.cleared ? \" *\" : (entry.uncleared ? \"\" : \" !\"))" + "%(entry.date)%(entry.cleared ? \" *\" : (entry.uncleared ? \"\" : \" !\"))" "%(code ? \" (\" + code + \")\" : \"\") %(payee)%(entry.comment | \"\")\n" - " %(cleared ? \" *\" : (uncleared ? \"\" : \" !\"))%-34(account)" + " %(cleared ? \"* \" : (uncleared ? \"\" : \"! \"))%-34(account)" " %12(amount)%(comment | \"\")\n%/" - " %(cleared ? \" *\" : (uncleared ? \"\" : \" !\"))%-34(account)" + " %(cleared ? \"* \" : (uncleared ? \"\" : \"! \"))%-34(account)" " %12(amount)%(comment | \"\")\n%/\n"); HANDLER(balance_format_).on( |