From: Michael Foord Date: Sat, 3 Apr 2010 15:20:00 +0000 (+0000) Subject: Minor tweak to unittest command line usage message X-Git-Tag: v2.7b1~103 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3dd9f40d6d1376c250f4a4763d4d93db9bb78e79;p=thirdparty%2FPython%2Fcpython.git Minor tweak to unittest command line usage message --- diff --git a/Lib/unittest/main.py b/Lib/unittest/main.py index b53af05cac5f..747aad206494 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: