diff options
author | Zackery Spytz <zspytz@gmail.com> | 2021-02-05 06:09:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 22:09:17 +0900 |
commit | 4bb332cfd1f9740b1e31d2d8b8bf1bedca3439ff (patch) | |
tree | 101b9be16920466ecf6fc715c17023549d25a830 | |
parent | bpo-43132: Fix incorrect handling of PyObject_RichCompareBool() in _zoneinfo ... (diff) | |
download | cpython-4bb332cfd1f9740b1e31d2d8b8bf1bedca3439ff.tar.gz cpython-4bb332cfd1f9740b1e31d2d8b8bf1bedca3439ff.tar.bz2 cpython-4bb332cfd1f9740b1e31d2d8b8bf1bedca3439ff.zip |
Fix a typo in a deprecation warning (GH-24423)
-rw-r--r-- | Lib/distutils/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 5ddb9592380..7b2b059b83d 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) |