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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dd1e670758794b1dccdd42aa1f8ccddabdd406c2;p=thirdparty%2FPython%2Fcpython.git Fix a variable typo by switching to a f-string. --- diff --git a/Tools/scripts/pyvenv b/Tools/scripts/pyvenv index 1eed3ff9f821..1fb42c639132 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: