From 4bb332cfd1f9740b1e31d2d8b8bf1bedca3439ff Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Fri, 5 Feb 2021 06:09:17 -0700 Subject: Fix a typo in a deprecation warning (GH-24423) --- Lib/distutils/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 5ddb959238..7b2b059b83 100644 --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -13,7 +13,7 @@ __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) -- cgit v1.2.3-65-gdbad