changeset: 98859:7a5f8418b4ab user: Brett Cannon date: Sun Oct 25 17:40:31 2015 -0700 files: Tools/scripts/pyvenv description: Issue #25154: Make the file argument apply to the print function and not str.format call. diff -r 3b552e2811f8 -r 7a5f8418b4ab Tools/scripts/pyvenv --- a/Tools/scripts/pyvenv Sat Oct 24 23:27:03 2015 -0500 +++ b/Tools/scripts/pyvenv Sun Oct 25 17:40:31 2015 -0700 @@ -5,7 +5,7 @@ executable = pathlib.Path(sys.executable or 'python3').name print('WARNING: the pyenv script is deprecated in favour of ' - '`{} -m venv`'.format(exeutable, file=sys.stderr)) + '`{} -m venv`'.format(exeutable), file=sys.stderr) rc = 1 try: