diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-05-21 10:30:11 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-05-21 10:30:11 -0400 |
commit | c3a21a08b16af1eb1e2b47972ecdab6df3d79b7b (patch) | |
tree | 8020e7fc99f39d558bcf1e4c7a04a01b4f92d31d /setuptools/command/easy_install.py | |
parent | b0c4ff4663183745aeb761dab6dc89740dd39b08 (diff) | |
download | external_python_setuptools-c3a21a08b16af1eb1e2b47972ecdab6df3d79b7b.tar.gz external_python_setuptools-c3a21a08b16af1eb1e2b47972ecdab6df3d79b7b.tar.bz2 external_python_setuptools-c3a21a08b16af1eb1e2b47972ecdab6df3d79b7b.zip |
Normalize imports
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 0bd3ea45..39afb653 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -15,8 +15,10 @@ __ https://pythonhosted.org/setuptools/easy_install.html from glob import glob from distutils.util import get_platform from distutils.util import convert_path, subst_vars -from distutils.errors import DistutilsArgError, DistutilsOptionError, \ - DistutilsError, DistutilsPlatformError +from distutils.errors import ( + DistutilsArgError, DistutilsOptionError, + DistutilsError, DistutilsPlatformError, +) from distutils.command.install import INSTALL_SCHEMES, SCHEME_KEYS from distutils import log, dir_util from distutils.command.build_scripts import first_line_re |