diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-18 19:57:02 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-18 19:57:02 -0500 |
commit | 43ffa78752de38190b2480b68d9ad908cf1b7fa5 (patch) | |
tree | f8d4f4cb1dda2351ff17f6b123108aa33994fb8e /setuptools/command/easy_install.py | |
parent | 97f96e8cd4d1938095101f26a28f17d6a3f97435 (diff) | |
download | external_python_setuptools-43ffa78752de38190b2480b68d9ad908cf1b7fa5.tar.gz external_python_setuptools-43ffa78752de38190b2480b68d9ad908cf1b7fa5.tar.bz2 external_python_setuptools-43ffa78752de38190b2480b68d9ad908cf1b7fa5.zip |
Allow the CommandSpec class to be resolved by the writer.
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index fcd96bea..9d25a139 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1988,6 +1988,8 @@ class ScriptWriter(object): ) """).lstrip() + command_spec_class = CommandSpec + @classmethod def get_script_args(cls, dist, executable=None, wininst=False): # for backward compatibility |