summaryrefslogtreecommitdiff
path: root/test/LedgerHarness.py
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-11-02 04:41:32 -0500
committerJohn Wiegley <johnw@newartisans.com>2009-11-02 04:41:32 -0500
commit5e1886b147df2e3265304246d06272e6bac049a5 (patch)
tree903384aa665d316b1fa3183f2b2212c21694b83d /test/LedgerHarness.py
parentc03fd75d09a1c6f9855030726df638f6489b693f (diff)
downloadfork-ledger-5e1886b147df2e3265304246d06272e6bac049a5.tar.gz
fork-ledger-5e1886b147df2e3265304246d06272e6bac049a5.tar.bz2
fork-ledger-5e1886b147df2e3265304246d06272e6bac049a5.zip
Only --args-only is needed in LedgerHarness.py
Diffstat (limited to 'test/LedgerHarness.py')
-rwxr-xr-xtest/LedgerHarness.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/LedgerHarness.py b/test/LedgerHarness.py
index 7e8cfa3d..8a5af123 100755
--- a/test/LedgerHarness.py
+++ b/test/LedgerHarness.py
@@ -53,10 +53,8 @@ class LedgerHarness:
if columns:
insert += ' --columns=80'
- 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)
+ command = re.sub('\$ledger', '%s%s %s' % \
+ (self.ledger, insert, '--args-only'), command)
return Popen(command, shell=True, close_fds=True, env=env,
stdin=PIPE, stdout=PIPE, stderr=PIPE)