diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2014-02-09 18:42:42 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-02-09 18:42:42 -0500 |
| commit | 0eacd77e0ebd6a0a4e0672fbd1c77663f3507966 (patch) | |
| tree | 2f79bf3e8a5c3de522c0414e5c4481b322e5e645 | |
| parent | a31410a54b0e756c3ee27f2bcfe2dd6301968c77 (diff) | |
| download | python-setuptools-git-0eacd77e0ebd6a0a4e0672fbd1c77663f3507966.tar.gz | |
Remove import *
| -rwxr-xr-x | setuptools/command/alias.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/alias.py b/setuptools/command/alias.py index 465d6ae4..05c0766b 100755 --- a/setuptools/command/alias.py +++ b/setuptools/command/alias.py @@ -1,4 +1,5 @@ -from distutils.errors import * +from distutils.errors import DistutilsOptionError + from setuptools.command.setopt import edit_config, option_base, config_file def shquote(arg): |
