Issue #25154: Make the file argument apply to the print function and
not str.format call.
This commit is contained in:
parent
3188f1dcba
commit
f1c47e4751
|
@ -5,7 +5,7 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
executable = pathlib.Path(sys.executable or 'python3').name
|
executable = pathlib.Path(sys.executable or 'python3').name
|
||||||
print('WARNING: the pyenv script is deprecated in favour of '
|
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
|
rc = 1
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue