diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2013-10-31 18:44:04 +0000 |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2013-10-31 18:44:04 +0000 |
commit | 0e6c66d48a393cb3ba04f8537df8f87354796af1 (patch) | |
tree | 492b524403fe1d6708e78d72382df8ddb306e5b9 | |
parent | 637412075081ced0136a012f039806f292c999a5 (diff) | |
download | cpython-git-0e6c66d48a393cb3ba04f8537df8f87354796af1.tar.gz |
Issue #19349: Corrected error message.
-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 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 |