commit | dd1e670758794b1dccdd42aa1f8ccddabdd406c2 | [log] [tgz] |
---|---|---|
author | Brett Cannon <brett@python.org> | Mon Oct 26 17:11:04 2015 -0700 |
committer | Brett Cannon <brett@python.org> | Mon Oct 26 17:11:04 2015 -0700 |
tree | a159281f43d36058ffb7eb951592df029c984434 | |
parent | d7475fb3c8c711b319fc9a513424642f453a6bff [diff] |
Fix a variable typo by switching to a f-string.
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 @@ 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: