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 | bb4b734738c02c0d45bedc6c8a75a2ee03c75c16 (patch) | |
tree | 0b82af58f99e762c8d066f367f01cd2dfcc27a36 /Lib/venv/__init__.py | |
parent | 4148088bf1200ba965e2e65a9908eaeee9e54509 (diff) | |
download | cpython-bb4b734738c02c0d45bedc6c8a75a2ee03c75c16.tar.gz |
Issue #19349: Corrected error message.
Diffstat (limited to 'Lib/venv/__init__.py')
-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 |