From: Brett Cannon Date: Tue, 31 Jan 2012 22:02:10 +0000 (-0500) Subject: Fix a minor output typo as found by Terry Reedy. X-Git-Tag: v3.3.0a1~272 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ea5b67a0b5fb5f14ccbafda4a65b9eb3f56cc99;p=python Fix a minor output typo as found by Terry Reedy. --- diff --git a/Lib/importlib/test/benchmark.py b/Lib/importlib/test/benchmark.py index a8235cbe2e..6c00111c2b 100644 --- a/Lib/importlib/test/benchmark.py +++ b/Lib/importlib/test/benchmark.py @@ -201,7 +201,7 @@ if __name__ == '__main__': '(incompatible w/ --benchmark)') parser.add_argument('--benchmark', dest='benchmark', help='specific benchmark to run ' - '(incompatible w/ --file') + '(incompatible w/ --file)') options = parser.parse_args() if options.filename and options.benchmark: print('Cannot specify a benchmark *and* read/write results')