Commit f1c47e47 authored by Brett Cannon's avatar Brett Cannon

Issue #25154: Make the file argument apply to the print function and

not str.format call.
parent 3188f1dc
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment