diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-05-27 18:14:16 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-05-27 18:14:16 -0400 |
commit | 7ee56c5270d979f73c248c3ef5bac48793cd77d6 (patch) | |
tree | 2d537b7dacba76d2ccdb63ee84f6e754a9200f4f /setuptools/command/easy_install.py | |
parent | 16da5eac3a04bc4224082ee54f5f0f5b1c8d92db (diff) | |
download | external_python_setuptools-7ee56c5270d979f73c248c3ef5bac48793cd77d6.tar.gz external_python_setuptools-7ee56c5270d979f73c248c3ef5bac48793cd77d6.tar.bz2 external_python_setuptools-7ee56c5270d979f73c248c3ef5bac48793cd77d6.zip |
Update docstring to include the actual entry point names (for hits when grepping).
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 515c89d5..2c127126 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -2015,7 +2015,8 @@ class ScriptWriter(object): @classmethod def get_args(cls, dist, header=None): """ - Yield write_script() argument tuples for a distribution's entrypoints + Yield write_script() argument tuples for a distribution's + console_scripts and gui_scripts entry points. """ if header is None: header = cls.get_header() |