From: W. Trevor King Date: Mon, 10 Feb 2014 18:40:26 +0000 (-0800) Subject: nmbug-status: Add metavars for --config and --get-query X-Git-Tag: 0.18_rc0~159 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=a2b64211b285e35e8f57583809eab98c431a8cd5;ds=sidebyside nmbug-status: Add metavars for --config and --get-query Now the suggested usage (listed by 'nmbug-status --help') is: usage: nmbug-status [-h] [--text] [--config PATH] [--list-views] [--get-query VIEW] instead of the less obvious: usage: nmbug-status [-h] [--text] [--config CONFIG] [--list-views] [--get-query GET_QUERY] --- diff --git a/devel/nmbug/nmbug-status b/devel/nmbug/nmbug-status index 6dfbe4d8..22eeb5c7 100755 --- a/devel/nmbug/nmbug-status +++ b/devel/nmbug/nmbug-status @@ -52,10 +52,12 @@ def read_config(path=None, encoding=None): parser = argparse.ArgumentParser() parser.add_argument('--text', help='output plain text format', action='store_true') -parser.add_argument('--config', help='load config from given file') +parser.add_argument('--config', help='load config from given file', + metavar='PATH') parser.add_argument('--list-views', help='list views', action='store_true') -parser.add_argument('--get-query', help='get query for view') +parser.add_argument('--get-query', help='get query for view', + metavar='VIEW') args = parser.parse_args()