diff options
Diffstat (limited to 'setuptools/command/easy_install.py')
-rw-r--r-- | setuptools/command/easy_install.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index bf6c964e..3185ee1d 100644 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -62,7 +62,7 @@ from pkg_resources import ( VersionConflict, DEVELOP_DIST, ) import pkg_resources -from .. import _py312compat +from .. import py312compat from .._path import ensure_directory from ..extern.jaraco.text import yield_lines @@ -2291,7 +2291,7 @@ def load_launcher_manifest(name): def _rmtree(path, ignore_errors=False, onexc=auto_chmod): - return _py312compat.shutil_rmtree(path, ignore_errors, onexc) + return py312compat.shutil_rmtree(path, ignore_errors, onexc) def current_umask(): |