summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2015-10-26 17:11:04 -0700
committerBrett Cannon <brett@python.org>2015-10-26 17:11:04 -0700
commit2f7c4c385797d904fe60220b10410b4a7a253b46 (patch)
tree31190980d6c433add30c2426d29794580d470e8c /Tools
parent3af70a3252213e020d92e9bccf505630dc6e525a (diff)
downloadcpython-2f7c4c385797d904fe60220b10410b4a7a253b46.tar.gz
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 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: