summaryrefslogtreecommitdiff
path: root/setuptools/_distutils/command/check.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-11-13 14:37:35 -0500
committerJason R. Coombs <jaraco@jaraco.com>2022-11-13 14:37:35 -0500
commit9b8a6ef60b2b490bcf60b9dd7f0d43d46f49e489 (patch)
tree56b90c20f19ca92c8d9c26e782c5969a7b872c48 /setuptools/_distutils/command/check.py
parenta0e8e53cecc238e3bce2247308fe7dd94114ef35 (diff)
parente0787fad7c03d8defbbaaaf2888130cc2a171537 (diff)
downloadpython-setuptools-git-9b8a6ef60b2b490bcf60b9dd7f0d43d46f49e489.tar.gz
Merge https://github.com/pypa/distutils into distutils-e0787fa
Diffstat (limited to 'setuptools/_distutils/command/check.py')
-rw-r--r--setuptools/_distutils/command/check.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/_distutils/command/check.py b/setuptools/_distutils/command/check.py
index 539481c9..575e49fb 100644
--- a/setuptools/_distutils/command/check.py
+++ b/setuptools/_distutils/command/check.py
@@ -4,8 +4,8 @@ Implements the Distutils 'check' command.
"""
import contextlib
-from distutils.core import Command
-from distutils.errors import DistutilsSetupError
+from ..core import Command
+from ..errors import DistutilsSetupError
with contextlib.suppress(ImportError):
import docutils.utils