mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Fix a variable typo by switching to a f-string.
This commit is contained in:
parent
d7475fb3c8
commit
dd1e670758
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
f'`{executable} -m venv`', file=sys.stderr)
|
||||
|
||||
rc = 1
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue