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

This commit is contained in:
Brett Cannon 2015-10-26 17:11:04 -07:00
parent d7475fb3c8
commit dd1e670758

View file

@ -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: