Issue #25154: Make the file argument apply to the print function and
not str.format call.
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 @@
 
     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: