diff options
author | Brett Cannon <brett@python.org> | 2015-10-26 17:11:04 -0700 |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-10-26 17:11:04 -0700 |
commit | 2f7c4c385797d904fe60220b10410b4a7a253b46 (patch) | |
tree | 31190980d6c433add30c2426d29794580d470e8c /Tools | |
parent | 3af70a3252213e020d92e9bccf505630dc6e525a (diff) | |
download | cpython-2f7c4c385797d904fe60220b10410b4a7a253b46.tar.gz |
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 1eed3ff9f8..1fb42c6391 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: |