diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2013-10-31 18:44:48 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2013-10-31 18:44:48 (GMT) |
commit | 6ec518bd8efd991412009392eefca8ef091198a3 (patch) | |
tree | da5e09d097cab6a59ba5fbb971b1e3e9362ab059 /Lib/venv | |
parent | 61a2ced1c5b91ea05300dfcb0801f1ffaf58647f (diff) | |
parent | 0e6c66d48a393cb3ba04f8537df8f87354796af1 (diff) | |
download | cpython-6ec518bd8efd991412009392eefca8ef091198a3.zip cpython-6ec518bd8efd991412009392eefca8ef091198a3.tar.gz cpython-6ec518bd8efd991412009392eefca8ef091198a3.tar.bz2 |
Closes #19349: Merged fix from 3.3.
Diffstat (limited to 'Lib/venv')
-rw-r--r-- | Lib/venv/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py index f184328..5a70613 100644 --- a/Lib/venv/__init__.py +++ b/Lib/venv/__init__.py @@ -345,7 +345,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 |