diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-04-03 15:20:00 (GMT) |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-04-03 15:20:00 (GMT) |
commit | 3dd9f40d6d1376c250f4a4763d4d93db9bb78e79 (patch) | |
tree | 7d2648be9fbd66732cb1dc05e921487d155db988 /Lib/unittest | |
parent | d43b63fed34ae19259e0d0ddb4d3604413b3c329 (diff) | |
download | cpython-3dd9f40d6d1376c250f4a4763d4d93db9bb78e79.zip cpython-3dd9f40d6d1376c250f4a4763d4d93db9bb78e79.tar.gz cpython-3dd9f40d6d1376c250f4a4763d4d93db9bb78e79.tar.bz2 |
Minor tweak to unittest command line usage message
Diffstat (limited to 'Lib/unittest')
-rw-r--r-- | Lib/unittest/main.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/unittest/main.py b/Lib/unittest/main.py index b53af05..747aad2 100644 --- a/Lib/unittest/main.py +++ b/Lib/unittest/main.py @@ -98,7 +98,8 @@ class TestProgram(object): def usageExit(self, msg=None): if msg: print msg - usage = {'progName': self.progName, 'catchbreak': '', 'failfast': ''} + usage = {'progName': self.progName, 'catchbreak': '', 'failfast': '', + 'buffer': ''} if self.failfast != False: usage['failfast'] = FAILFAST if self.catchbreak != False: |