]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #19349: Corrected error message.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Thu, 31 Oct 2013 18:44:04 +0000 (18:44 +0000)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Thu, 31 Oct 2013 18:44:04 +0000 (18:44 +0000)
Lib/venv/__init__.py

index fc5b65b2adae42997e2acf1b2e81d03d0571b859..e219fe99e3e7cb5ffa996662ab4ec2981631eae3 100644 (file)
@@ -336,7 +336,7 @@ def main(args=None):
     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