summaryrefslogtreecommitdiff
path: root/ledger.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ledger.cc')
-rw-r--r--ledger.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ledger.cc b/ledger.cc
index 4883c3cb..08edc278 100644
--- a/ledger.cc
+++ b/ledger.cc
@@ -63,7 +63,7 @@ void transaction::print(std::ostream& out, bool display_quantity,
void entry::print(std::ostream& out, bool shortcut) const
{
char buf[32];
- std::strftime(buf, 31, "%Y.%m.%d ", std::localtime(&date));
+ std::strftime(buf, 31, "%Y/%m/%d ", std::localtime(&date));
out << buf;
if (cleared)