diff options
author | John Wiegley <johnw@newartisans.com> | 2009-10-25 04:37:11 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-10-25 05:01:47 -0400 |
commit | fc84eeb358f13b7c2b2668917692da26af001901 (patch) | |
tree | cfc4540c1b7805a17425675c1143d7a2d748b42f /src/annotate.cc | |
parent | 588f2ef2f51d7bdf209820bfb244034863601939 (diff) | |
download | fork-ledger-fc84eeb358f13b7c2b2668917692da26af001901.tar.gz fork-ledger-fc84eeb358f13b7c2b2668917692da26af001901.tar.bz2 fork-ledger-fc84eeb358f13b7c2b2668917692da26af001901.zip |
Rewrote the way date and time I/O is managed
Diffstat (limited to 'src/annotate.cc')
-rw-r--r-- | src/annotate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/annotate.cc b/src/annotate.cc index 1ea39b5d..c6084f7f 100644 --- a/src/annotate.cc +++ b/src/annotate.cc @@ -127,7 +127,7 @@ void annotation_t::print(std::ostream& out, bool keep_base) const << '}'; if (date) - out << " [" << format_date(*date, string("%Y/%m/%d")) << ']'; + out << " [" << format_date(*date, FMT_WRITTEN) << ']'; if (tag) out << " (" << *tag << ')'; |