From 0e6c66d48a393cb3ba04f8537df8f87354796af1 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Thu, 31 Oct 2013 18:44:04 +0000 Subject: Issue #19349: Corrected error message. --- Lib/venv/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py index fc5b65b..e219fe9 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 -- cgit v0.12