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
This commit is contained in:
Terry Howe 2014-05-23 12:21:17 -06:00
parent 4bdf5fc90e
commit d150502178

View File

@ -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',