diff options
author | Brett Cannon <brett@python.org> | 2012-01-31 22:02:10 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-01-31 22:02:10 (GMT) |
commit | 5ea5b67a0b5fb5f14ccbafda4a65b9eb3f56cc99 (patch) | |
tree | dabeff09b11075e20e4d95901b2d1a4ed3473c8f | |
parent | cdf11210769906137da2c6815abd4585c6ceb88e (diff) | |
download | cpython-5ea5b67a0b5fb5f14ccbafda4a65b9eb3f56cc99.zip cpython-5ea5b67a0b5fb5f14ccbafda4a65b9eb3f56cc99.tar.gz cpython-5ea5b67a0b5fb5f14ccbafda4a65b9eb3f56cc99.tar.bz2 |
Fix a minor output typo as found by Terry Reedy.
-rw-r--r-- | Lib/importlib/test/benchmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/test/benchmark.py b/Lib/importlib/test/benchmark.py index a8235cb..6c00111c 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') |