summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-01-31 22:02:10 (GMT)
committerBrett Cannon <brett@python.org>2012-01-31 22:02:10 (GMT)
commit5ea5b67a0b5fb5f14ccbafda4a65b9eb3f56cc99 (patch)
treedabeff09b11075e20e4d95901b2d1a4ed3473c8f
parentcdf11210769906137da2c6815abd4585c6ceb88e (diff)
downloadcpython-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.py2
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')