From: Vinay Sajip Date: Thu, 31 Oct 2013 18:44:04 +0000 (+0000) Subject: Issue #19349: Corrected error message. X-Git-Tag: v3.4.0b1~442^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0e6c66d48a393cb3ba04f8537df8f87354796af1;p=thirdparty%2FPython%2Fcpython.git Issue #19349: Corrected error message. --- diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py index fc5b65b2adae..e219fe99e3e7 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