Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0e6c66d

Browse files
committed
Issue #19349: Corrected error message.
1 parent 6374120 commit 0e6c66d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/venv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def main(args=None):
336336
elif not hasattr(sys, 'base_prefix'):
337337
compatible = False
338338
if not compatible:
339-
raise ValueError('This script is only for use with Python 3.3')
339+
raise ValueError('This script is only for use with Python >= 3.3')
340340
else:
341341
import argparse
342342

0 commit comments

Comments
 (0)