From d0c94d07f3184284f894993f27f145e4fbe1f71b Mon Sep 17 00:00:00 2001 From: Vineet Date: Thu, 6 Feb 2014 22:37:42 +0530 Subject: [PATCH] Improve the help-text for -l flag --- pipdeptree.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipdeptree.py b/pipdeptree.py index 095c685..1280970 100644 --- a/pipdeptree.py +++ b/pipdeptree.py @@ -87,8 +87,8 @@ def main(): parser.add_argument('-a', '--all', action='store_true', help='list all deps at top level') parser.add_argument('-l', '--local-only', action='store_true', help=( - 'list only the installations local to the ' - 'current virtualenv, if in a virtualenv' + 'If in a virtualenv that has global access ' + 'donot show globally installed packages' )) args = parser.parse_args() default_skip = ['setuptools', 'pip', 'python', 'distribute']