summaryrefslogtreecommitdiff
path: root/Tools/scripts/pyvenv
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2015-10-25 17:40:31 -0700
committerBrett Cannon <brett@python.org>2015-10-25 17:40:31 -0700
commitf1c47e47514e1cf1006dc21de386af7ee25f8db5 (patch)
treeb25d1e0da6e47e1cc7ff45d250370c4d560f90fa /Tools/scripts/pyvenv
parent3188f1dcbae8feb07d299b5ea3e3987b326016c9 (diff)
downloadcpython-git-f1c47e47514e1cf1006dc21de386af7ee25f8db5.tar.gz
Issue #25154: Make the file argument apply to the print function and
not str.format call.
Diffstat (limited to 'Tools/scripts/pyvenv')
-rwxr-xr-xTools/scripts/pyvenv2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/pyvenv b/Tools/scripts/pyvenv
index 1043efcfa7..1eed3ff9f8 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: