Merge branch 'next' of https://github.com/jwiegley/ledger into next

This commit is contained in:
Craig Earls 2012-10-23 12:10:14 -07:00
commit b1661b6c90

View file

@ -116,12 +116,14 @@ class LedgerHarness:
def success(self):
sys.stdout.write(".")
sys.stdout.flush()
self.succeeded += 1
def failure(self, name=None):
sys.stdout.write("E")
if name:
sys.stdout.write("[%s]" % name)
sys.stdout.flush()
self.failed += 1
def exit(self):