[svn r21074] fix usage a bit

This commit is contained in:
Ian Bicking 2008-10-28 03:31:00 -05:00
parent cb38e13b02
commit dd921d228d
1 changed files with 2 additions and 1 deletions

3
pip.py
View File

@ -455,7 +455,7 @@ FreezeCommand()
class ZipCommand(Command):
name = 'zip'
usage = '%prog [OPTIONS] PACKAGE_NAMES...'
summary = 'zip (or unzip) individual packages'
summary = 'Zip individual packages'
def __init__(self):
super(ZipCommand, self).__init__()
@ -734,6 +734,7 @@ ZipCommand()
class UnzipCommand(ZipCommand):
name = 'unzip'
summary = 'Unzip individual packages'
UnzipCommand()