aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-08 05:11:20 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-08 05:11:20 +0000
commit5eec64a05733986216d87dbdc52c78615ac3cda3 (patch)
tree2a5417b2de1dfcc089ff03f5a9f5f236fa035ba6
parent6050f5361738831a12debd373b9016a077e930df (diff)
downloadexternal_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
-rwxr-xr-xsetuptools/command/alias.py4
-rwxr-xr-xsetuptools/command/rotate.py2
2 files changed, 3 insertions, 3 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'),
diff --git a/setuptools/command/rotate.py b/setuptools/command/rotate.py
index f7330436..11b6eae8 100755
--- a/setuptools/command/rotate.py
+++ b/setuptools/command/rotate.py
@@ -7,7 +7,7 @@ from distutils.errors import *
class rotate(Command):
"""Delete older distributions"""
- description = "Delete older distributions, keeping N newest files"
+ description = "delete older distributions, keeping N newest files"
user_options = [
('match=', 'm', "patterns to match (required)"),
('dist-dir=', 'd', "directory where the distributions are"),