diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-03-03 18:26:01 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-03-03 18:26:01 (GMT) |
commit | a9ccce3fee1fb35587ed787883ef7b4b3e66ce30 (patch) | |
tree | fb53006528f081304935cb54e7a1d2da99dc5a1c /Lib | |
parent | 96b1c903f5310202a665e86e624a38ede50429c3 (diff) | |
download | cpython-a9ccce3fee1fb35587ed787883ef7b4b3e66ce30.zip cpython-a9ccce3fee1fb35587ed787883ef7b4b3e66ce30.tar.gz cpython-a9ccce3fee1fb35587ed787883ef7b4b3e66ce30.tar.bz2 |
Improve description
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/command/register.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/register.py b/Lib/distutils/command/register.py index 29b76cb..e4a3799 100644 --- a/Lib/distutils/command/register.py +++ b/Lib/distutils/command/register.py @@ -15,7 +15,7 @@ from distutils.errors import * class register(Command): - description = "register the distribution with the repository" + description = ("register the distribution with the Python package index") DEFAULT_REPOSITORY = 'http://www.python.org/pypi' |