summaryrefslogtreecommitdiff
path: root/test/LedgerHarness.py
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-10-28 02:13:49 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-10-28 02:13:54 -0400
commit16dbd019bc1d955f083e8f771d00c6a3f9c553ba (patch)
treebed25ac408315145f819cf115a610717dce9965b /test/LedgerHarness.py
parenta3a40994d25164b57ed4ae8908e1a9cc7ba3b208 (diff)
downloadfork-ledger-16dbd019bc1d955f083e8f771d00c6a3f9c553ba.tar.gz
fork-ledger-16dbd019bc1d955f083e8f771d00c6a3f9c553ba.tar.bz2
fork-ledger-16dbd019bc1d955f083e8f771d00c6a3f9c553ba.zip
Colorization at the terminal now on by default
Diffstat (limited to 'test/LedgerHarness.py')
-rwxr-xr-xtest/LedgerHarness.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/LedgerHarness.py b/test/LedgerHarness.py
index cc3b04cd..5af47463 100755
--- a/test/LedgerHarness.py
+++ b/test/LedgerHarness.py
@@ -48,9 +48,8 @@ class LedgerHarness:
if columns:
insert += ' --columns=80'
- command = re.sub('\$ledger',
- '%s%s --args-only' % (self.ledger, insert),
- command)
+ command = re.sub('\$ledger', '%s%s --args-only --no-color' % \
+ (self.ledger, insert), command)
return Popen(command, shell=True, close_fds=True, env=env,
stdin=PIPE, stdout=PIPE, stderr=PIPE)