diff options
author | Brett Cannon <brett@python.org> | 2015-10-27 00:11:04 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-10-27 00:11:04 (GMT) |
commit | dd1e670758794b1dccdd42aa1f8ccddabdd406c2 (patch) | |
tree | a159281f43d36058ffb7eb951592df029c984434 /Tools | |
parent | d7475fb3c8c711b319fc9a513424642f453a6bff (diff) | |
download | cpython-dd1e670758794b1dccdd42aa1f8ccddabdd406c2.zip cpython-dd1e670758794b1dccdd42aa1f8ccddabdd406c2.tar.gz cpython-dd1e670758794b1dccdd42aa1f8ccddabdd406c2.tar.bz2 |
Fix a variable typo by switching to a f-string.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/pyvenv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/pyvenv b/Tools/scripts/pyvenv index 1eed3ff..1fb42c6 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) + f'`{executable} -m venv`', file=sys.stderr) rc = 1 try: |