Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dd1e670

Browse files
committed
Fix a variable typo by switching to a f-string.
1 parent d7475fb commit dd1e670

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/scripts/pyvenv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if __name__ == '__main__':
55

66
executable = pathlib.Path(sys.executable or 'python3').name
77
print('WARNING: the pyenv script is deprecated in favour of '
8-
'`{} -m venv`'.format(exeutable), file=sys.stderr)
8+
f'`{executable} -m venv`', file=sys.stderr)
99

1010
rc = 1
1111
try:

0 commit comments

Comments
 (0)