From d1505021787b4e0eb240cce077870e1b30a13a36 Mon Sep 17 00:00:00 2001 From: Terry Howe Date: Fri, 23 May 2014 12:21:17 -0600 Subject: The --variable option to shell format is redundant The --variable option to the shell format is redundant to the --column option and it adds to the clutter. Change-Id: I0e3dbca8272d1503df3188dbba00afa902dbd34b Closes-Bug: #1320629 --- cliff/formatters/shell.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cliff/formatters/shell.py b/cliff/formatters/shell.py index fd4f29e..e613c22 100644 --- a/cliff/formatters/shell.py +++ b/cliff/formatters/shell.py @@ -3,6 +3,7 @@ from .base import SingleFormatter +import argparse import six @@ -19,7 +20,7 @@ class ShellFormatter(SingleFormatter): default=[], dest='variables', metavar='VARIABLE', - help='specify the variable(s) to include, can be repeated', + help=argparse.SUPPRESS, ) group.add_argument( '--prefix', -- cgit v1.2.1