From 5ea5b67a0b5fb5f14ccbafda4a65b9eb3f56cc99 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Tue, 31 Jan 2012 17:02:10 -0500 Subject: [PATCH] Fix a minor output typo as found by Terry Reedy. --- Lib/importlib/test/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/importlib/test/benchmark.py b/Lib/importlib/test/benchmark.py index a8235cbe2ee..6c00111c2b0 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')