From 55f5868380a4917028365256abcfd6d0b5f0a1e4 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 29 Oct 2009 00:52:51 -0400 Subject: Setting --date-format in ~/.ledgerrc works again --- test/LedgerHarness.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'test/LedgerHarness.py') diff --git a/test/LedgerHarness.py b/test/LedgerHarness.py index cd8beca8..cf65f590 100755 --- a/test/LedgerHarness.py +++ b/test/LedgerHarness.py @@ -48,8 +48,10 @@ class LedgerHarness: if columns: insert += ' --columns=80' - command = re.sub('\$ledger', '%s%s --args-only --no-color --pager=none' % \ - (self.ledger, insert), command) + command = re.sub('\$ledger', '%s%s %s %s %s %s' % \ + (self.ledger, insert, '--args-only', + '--no-color', '--pager=none', + '--date-format=%y-%b-%d'), command) return Popen(command, shell=True, close_fds=True, env=env, stdin=PIPE, stdout=PIPE, stderr=PIPE) -- cgit v1.2.3