summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2018-07-27 02:16:21 +0000
committerGerrit Code Review <review@openstack.org>2018-07-27 02:16:21 +0000
commite76c4958ea779a44f2d0351616c94b627aebe0fe (patch)
tree5d58d1128fff81a48be589fe744591c96f6c702f
parent32251f0ea3863098b4d4d54364c8ee18ff170a44 (diff)
parentfee0b58ef8bfb701a1df0426d7e7536e34f91599 (diff)
downloadpython-cinderclient-4.0.0.tar.gz
Merge "Reflect multiattach deprecation in help text"4.0.0
-rw-r--r--cinderclient/v2/shell.py2
-rw-r--r--cinderclient/v3/shell.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/cinderclient/v2/shell.py b/cinderclient/v2/shell.py
index 88c79d4..d9d05dd 100644
--- a/cinderclient/v2/shell.py
+++ b/cinderclient/v2/shell.py
@@ -294,7 +294,7 @@ class CheckSizeArgForCreate(argparse.Action):
@utils.arg('--allow-multiattach',
dest='multiattach',
action="store_true",
- help=('Allow volume to be attached more than once.'
+ help=('Allow volume to be attached more than once. (DEPRECATED)'
' Default=False'),
default=False)
def do_create(cs, args):
diff --git a/cinderclient/v3/shell.py b/cinderclient/v3/shell.py
index e523782..8cba6ee 100644
--- a/cinderclient/v3/shell.py
+++ b/cinderclient/v3/shell.py
@@ -564,7 +564,7 @@ def do_reset_state(cs, args):
@utils.arg('--allow-multiattach',
dest='multiattach',
action="store_true",
- help=('Allow volume to be attached more than once.'
+ help=('Allow volume to be attached more than once. (DEPRECATED)'
' Default=False'),
default=False)
@utils.arg('--poll',