]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a typo in a deprecation warning (GH-24423)
authorZackery Spytz <zspytz@gmail.com>
Fri, 5 Feb 2021 13:09:17 +0000 (06:09 -0700)
committerGitHub <noreply@github.com>
Fri, 5 Feb 2021 13:09:17 +0000 (22:09 +0900)
Lib/distutils/__init__.py

index 5ddb95923809c98e4b3482278fcd5f7bc451c9c5..7b2b059b83dad13911983691759c990d74c3b970 100644 (file)
@@ -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)