From f1c47e47514e1cf1006dc21de386af7ee25f8db5 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sun, 25 Oct 2015 17:40:31 -0700 Subject: Issue #25154: Make the file argument apply to the print function and not str.format call. --- Tools/scripts/pyvenv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v0.12