From 7e5f5c72e1e60e1b6f0169e2ebe5c8c171be9977 Mon Sep 17 00:00:00 2001 From: Thomas Grenfell Smith Date: Thu, 23 Jun 2011 16:04:32 -0400 Subject: [PATCH] Describe the 'symlink' command better --- README.rst | 4 ++-- pythonbrew/commands/symlink.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index d061329..fd9c14b 100644 --- a/README.rst +++ b/README.rst @@ -81,9 +81,9 @@ Disable pythonbrew:: pythonbrew off -Create/Remove a symbolic link to python:: +Create/Remove a symbolic link to python (in a directory on your $PATH):: - pythonbrew symlink # Create a symbolic link, like "py2.5.5" + pythonbrew symlink # Create a symbolic link, like "py2.5.5", for each installed version pythonbrew symlink -p 2.5.5 pythonbrew symlink pip # Create a symbolic link to the specified script in bin directory pythonbrew symlink -r # Remove a symbolic link diff --git a/pythonbrew/commands/symlink.py b/pythonbrew/commands/symlink.py index b64768f..5e35d72 100644 --- a/pythonbrew/commands/symlink.py +++ b/pythonbrew/commands/symlink.py @@ -7,7 +7,7 @@ from pythonbrew.log import logger class SymlinkCommand(Command): name = "symlink" usage = "%prog [OPTIONS] [SCRIPT]" - summary = "Create/Remove a symbolic link" + summary = "Create/Remove a symbolic link on your $PATH" def __init__(self): super(SymlinkCommand, self).__init__()