diff options
Diffstat (limited to 'src/xact.cc')
-rw-r--r-- | src/xact.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xact.cc b/src/xact.cc index f459b4a2..c0d1c724 100644 --- a/src/xact.cc +++ b/src/xact.cc @@ -368,7 +368,7 @@ value_t xact_t::magnitude() const string xact_t::idstring() const { std::ostringstream buf; - buf << *_date; + buf << format_date(*_date, FMT_WRITTEN); buf << payee; magnitude().print(buf); return buf.str(); |