From dd921d228d2cc07900fd9807d95ffdae712d020e Mon Sep 17 00:00:00 2001 From: Ian Bicking Date: Tue, 28 Oct 2008 03:31:00 -0500 Subject: [PATCH] [svn r21074] fix usage a bit --- pip.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pip.py b/pip.py index 30d2edcf0..9e99272c3 100644 --- a/pip.py +++ b/pip.py @@ -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()