diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-08 05:11:20 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-08 05:11:20 +0000 |
commit | 5eec64a05733986216d87dbdc52c78615ac3cda3 (patch) | |
tree | 2a5417b2de1dfcc089ff03f5a9f5f236fa035ba6 /setuptools/command/alias.py | |
parent | 6050f5361738831a12debd373b9016a077e930df (diff) | |
download | external_python_setuptools-5eec64a05733986216d87dbdc52c78615ac3cda3.tar.gz external_python_setuptools-5eec64a05733986216d87dbdc52c78615ac3cda3.tar.bz2 external_python_setuptools-5eec64a05733986216d87dbdc52c78615ac3cda3.zip |
Fix a couple of command descriptions.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041095
Diffstat (limited to 'setuptools/command/alias.py')
-rwxr-xr-x | setuptools/command/alias.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/alias.py b/setuptools/command/alias.py index 42d6b2fc..76daae7f 100755 --- a/setuptools/command/alias.py +++ b/setuptools/command/alias.py @@ -6,9 +6,9 @@ from distutils.errors import * from setuptools.command.setopt import edit_config, option_base class alias(option_base): - """Abstract base class for commands that mess with config files""" + """Define a shortcut that invokes one or more commands""" - description = "set an option in setup.cfg or another config file" + description = "define a shortcut to invoke one or more commands" user_options = [ ('alias=', 'a', 'the name of the new pseudo-command'), |