[Python-checkins] cpython: Fix a minor output typo as found by Terry Reedy.

brett.cannon python-checkins at python.org
Tue Jan 31 23:02:15 CET 2012


http://hg.python.org/cpython/rev/b74a77fee744
changeset:   74701:b74a77fee744
user:        Brett Cannon <brett at python.org>
date:        Tue Jan 31 17:02:10 2012 -0500
summary:
  Fix a minor output typo as found by Terry Reedy.

files:
  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
--- a/Lib/importlib/test/benchmark.py
+++ b/Lib/importlib/test/benchmark.py
@@ -201,7 +201,7 @@
                              '(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')

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list