From 4ec06998b46ef755a35647043437be58236b127e Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Tue, 1 Mar 2016 13:21:11 -0800 Subject: [PATCH] correct the labeling in the --help output --- tldp/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tldp/config.py b/tldp/config.py index c924861..ce77c06 100644 --- a/tldp/config.py +++ b/tldp/config.py @@ -32,11 +32,11 @@ def collectconfiguration(tag, argv): g.add_argument('--summary', '-t', action='store_true', default=False, - help='dump inventory status report [%(default)s]') + help='dump inventory summary report [%(default)s]') ap.add_argument('--verbose', action='store_true', default=False, - help='more info in --list and --status [%(default)s]') + help='more info in --list/--detail [%(default)s]') ap.add_argument('--loglevel', default=logging.ERROR, type=arg_isloglevel, help='set the loglevel')