summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2021-02-05 13:09:17 (GMT)
committerGitHub <noreply@github.com>2021-02-05 13:09:17 (GMT)
commit4bb332cfd1f9740b1e31d2d8b8bf1bedca3439ff (patch)
tree101b9be16920466ecf6fc715c17023549d25a830 /Lib/distutils
parenteffaec0bb54f381db8ccfa62514bc26b00946b40 (diff)
downloadcpython-4bb332cfd1f9740b1e31d2d8b8bf1bedca3439ff.zip
cpython-4bb332cfd1f9740b1e31d2d8b8bf1bedca3439ff.tar.gz
cpython-4bb332cfd1f9740b1e31d2d8b8bf1bedca3439ff.tar.bz2
Fix a typo in a deprecation warning (GH-24423)
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py
index 5ddb959..7b2b059 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)