summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2015-10-27 00:11:04 (GMT)
committerBrett Cannon <brett@python.org>2015-10-27 00:11:04 (GMT)
commitdd1e670758794b1dccdd42aa1f8ccddabdd406c2 (patch)
treea159281f43d36058ffb7eb951592df029c984434 /Tools
parentd7475fb3c8c711b319fc9a513424642f453a6bff (diff)
downloadcpython-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-xTools/scripts/pyvenv2
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: