From: Zackery Spytz Date: Fri, 5 Feb 2021 13:09:17 +0000 (-0700) Subject: Fix a typo in a deprecation warning (GH-24423) X-Git-Tag: v3.10.0a6~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4bb332cfd1f9740b1e31d2d8b8bf1bedca3439ff;p=thirdparty%2FPython%2Fcpython.git Fix a typo in a deprecation warning (GH-24423) --- diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 5ddb95923809..7b2b059b83da 100644 --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -13,7 +13,7 @@ import warnings __version__ = sys.version[:sys.version.index(' ')] -warnings.warn("The distutils package deprecated and slated for " +warnings.warn("The distutils package is deprecated and slated for " "removal in Python 3.12. Use setuptools or check " "PEP 632 for potential alternatives", DeprecationWarning)