summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Howe <terrylhowe@gmail.com>2014-05-23 12:21:17 -0600
committerTerry Howe <terrylhowe@gmail.com>2014-05-23 12:21:17 -0600
commitd1505021787b4e0eb240cce077870e1b30a13a36 (patch)
tree2963a52506c78a43aa4e055e5c5ee16ab07bf212
parent4bdf5fc90ee3e84ac675f5f26f7a0d94aacf91c5 (diff)
downloadcliff-d1505021787b4e0eb240cce077870e1b30a13a36.tar.gz
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
-rw-r--r--cliff/formatters/shell.py3
1 files changed, 2 insertions, 1 deletions
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',