summaryrefslogtreecommitdiff
path: root/Lib/venv
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2013-10-31 18:44:04 +0000
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2013-10-31 18:44:04 +0000
commit0e6c66d48a393cb3ba04f8537df8f87354796af1 (patch)
tree492b524403fe1d6708e78d72382df8ddb306e5b9 /Lib/venv
parent637412075081ced0136a012f039806f292c999a5 (diff)
downloadcpython-git-0e6c66d48a393cb3ba04f8537df8f87354796af1.tar.gz
Issue #19349: Corrected error message.
Diffstat (limited to 'Lib/venv')
-rw-r--r--Lib/venv/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py
index fc5b65b2ad..e219fe99e3 100644
--- a/Lib/venv/__init__.py
+++ b/Lib/venv/__init__.py
@@ -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