From: Brett Cannon Date: Tue, 27 Oct 2015 00:11:04 +0000 (-0700) Subject: Fix a variable typo by switching to a f-string. X-Git-Tag: v3.6.0a1~1162 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dd1e670758794b1dccdd42aa1f8ccddabdd406c2;p=python Fix a variable typo by switching to a f-string. --- 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: