Commit dd1e6707 authored by Brett Cannon's avatar Brett Cannon

Fix a variable typo by switching to a f-string.

parent d7475fb3
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment