summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-06-12 20:35:28 +0000
committerGerrit Code Review <review@openstack.org>2014-06-12 20:35:28 +0000
commit6fecd14c0528b00fdd0e8e59f247d751edf6a290 (patch)
treea50fd6249b8f661afc054741380d482527ed64ab
parentce47db0f634c2916630953d198807a0ee92ab521 (diff)
parentd1505021787b4e0eb240cce077870e1b30a13a36 (diff)
downloadcliff-6fecd14c0528b00fdd0e8e59f247d751edf6a290.tar.gz
Merge "The --variable option to shell format is redundant"
-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',