diff options
author | John Wiegley <johnw@newartisans.com> | 2008-09-17 05:06:28 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-09-17 05:06:28 -0400 |
commit | 9307c87c952ee4752c04498bf68bc07b776e6d8a (patch) | |
tree | 3f18bd3c2eec5edceb574b2d0421bcbb80682b3a | |
parent | a68bcfc92ed64a449925cd451b12afc45dbe9d28 (diff) | |
download | fork-ledger-9307c87c952ee4752c04498bf68bc07b776e6d8a.tar.gz fork-ledger-9307c87c952ee4752c04498bf68bc07b776e6d8a.tar.bz2 fork-ledger-9307c87c952ee4752c04498bf68bc07b776e6d8a.zip |
When printing lot dates, never include a time.
-rw-r--r-- | amount.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1677,7 +1677,7 @@ annotated_commodity_t::write_annotations(std::ostream& out, out << " {" << price << '}'; if (date) - out << " [" << date << ']'; + out << " [" << date_t(date) << ']'; if (! tag.empty()) out << " (" << tag << ')'; |