Fix a typo in a deprecation warning (GH-24423)

This commit is contained in:
Zackery Spytz 2021-02-05 06:09:17 -07:00 committed by GitHub
parent effaec0bb5
commit 4bb332cfd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)