diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2022-08-10 09:41:48 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-08-10 09:41:48 -0400 |
| commit | 1d36597f52bd2d0093964c55520f4ddf5774fe53 (patch) | |
| tree | 321e6f0e12ce1b2eced7f4f8cec3da7e08c10d83 /setuptools/_distutils/command/register.py | |
| parent | 71c44d9606f85d80ab5a45530e40552237a1ba1f (diff) | |
| parent | b65aa401e5f533bce966012ca392521e2f939d32 (diff) | |
| download | python-setuptools-git-1d36597f52bd2d0093964c55520f4ddf5774fe53.tar.gz | |
Merge https://github.com/pypa/distutils into distutils-b65aa40
Diffstat (limited to 'setuptools/_distutils/command/register.py')
| -rw-r--r-- | setuptools/_distutils/command/register.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/_distutils/command/register.py b/setuptools/_distutils/command/register.py index 2c642472..c1402650 100644 --- a/setuptools/_distutils/command/register.py +++ b/setuptools/_distutils/command/register.py @@ -66,9 +66,9 @@ class register(PyPIRCCommand): def check_metadata(self): """Deprecated API.""" warn( - "distutils.command.register.check_metadata is deprecated, \ - use the check command instead", - PendingDeprecationWarning, + "distutils.command.register.check_metadata is deprecated; " + "use the check command instead", + DeprecationWarning, ) check = self.distribution.get_command_obj('check') check.ensure_finalized() |
