diff options
author | Brett Cannon <brett@python.org> | 2015-10-26 00:40:31 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-10-26 00:40:31 (GMT) |
commit | f1c47e47514e1cf1006dc21de386af7ee25f8db5 (patch) | |
tree | b25d1e0da6e47e1cc7ff45d250370c4d560f90fa /Tools/scripts | |
parent | 3188f1dcbae8feb07d299b5ea3e3987b326016c9 (diff) | |
download | cpython-f1c47e47514e1cf1006dc21de386af7ee25f8db5.zip cpython-f1c47e47514e1cf1006dc21de386af7ee25f8db5.tar.gz cpython-f1c47e47514e1cf1006dc21de386af7ee25f8db5.tar.bz2 |
Issue #25154: Make the file argument apply to the print function and
not str.format call.
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-x | Tools/scripts/pyvenv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/pyvenv b/Tools/scripts/pyvenv index 1043efc..1eed3ff 100755 --- a/Tools/scripts/pyvenv +++ b/Tools/scripts/pyvenv @@ -5,7 +5,7 @@ if __name__ == '__main__': 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: |