[commands/cache] Be explicit about `pip cache` only working on the wheel cache.

This commit is contained in:
Ellen Marie Dash 2020-02-23 17:01:44 -05:00
parent d74895a224
commit 10d13762eb
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
Add ``pip cache`` command for inspecting/managing pip's cache.
Add ``pip cache`` command for inspecting/managing pip's wheel cache.

View File

@ -66,7 +66,7 @@ commands_dict = OrderedDict([
)),
('cache', CommandInfo(
'pip._internal.commands.cache', 'CacheCommand',
"Inspect and manage pip's cache.",
"Inspect and manage pip's wheel cache.",
)),
('wheel', CommandInfo(
'pip._internal.commands.wheel', 'WheelCommand',

View File

@ -20,7 +20,7 @@ logger = logging.getLogger(__name__)
class CacheCommand(Command):
"""
Inspect and manage pip's cache.
Inspect and manage pip's wheel cache.
Subcommands: