[Python-checkins] cpython (3.3): Issue #19349: Corrected error message.

vinay.sajip python-checkins at python.org
Thu Oct 31 19:45:00 CET 2013


http://hg.python.org/cpython/rev/731bdec35fdd
changeset:   86814:731bdec35fdd
branch:      3.3
parent:      86811:54bf7b5ec3b6
user:        Vinay Sajip <vinay_sajip at yahoo.co.uk>
date:        Thu Oct 31 18:44:04 2013 +0000
summary:
  Issue #19349: Corrected error message.

files:
  Lib/venv/__init__.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py
--- a/Lib/venv/__init__.py
+++ b/Lib/venv/__init__.py
@@ -336,7 +336,7 @@
     elif not hasattr(sys, 'base_prefix'):
         compatible = False
     if not compatible:
-        raise ValueError('This script is only for use with Python 3.3')
+        raise ValueError('This script is only for use with Python >= 3.3')
     else:
         import argparse
 

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


More information about the Python-checkins mailing list