summaryrefslogtreecommitdiff
path: root/doc/source/command-beta.rst
diff options
context:
space:
mode:
authorRichard Theis <rtheis@us.ibm.com>2016-06-02 09:53:55 -0500
committerRichard Theis <rtheis@us.ibm.com>2016-06-02 10:07:34 -0500
commit6f2c1734e3d66e261f231711455821321c1fc254 (patch)
tree269f19082215e0ccb37c361427062c9d4e91b646 /doc/source/command-beta.rst
parentb349156059edb1c7ae8e4bdfbd5eb0826d7aa808 (diff)
downloadpython-openstackclient-6f2c1734e3d66e261f231711455821321c1fc254.tar.gz
Fix --enable options on commands
The --enable option on commands is ignored when the arguments are parsed. This is related to the --enable-beta-commands option. Renaming the option to --os-beta-command fixes the problem. There's no need to handle backwards compatibility for the option name change because there hasn't been an OSC release yet with beta commands. Change-Id: I0327ba8a2058858a83e9a42e231470ed733cc834 Closes-Bug: #1588384
Diffstat (limited to 'doc/source/command-beta.rst')
-rw-r--r--doc/source/command-beta.rst12
1 files changed, 4 insertions, 8 deletions
diff --git a/doc/source/command-beta.rst b/doc/source/command-beta.rst
index 53a44204..f0a4f851 100644
--- a/doc/source/command-beta.rst
+++ b/doc/source/command-beta.rst
@@ -33,7 +33,7 @@ example list
List examples
.. caution:: This is a beta command and subject to change.
- Use global option ``--enable-beta-commands`` to
+ Use global option ``--os-beta-command`` to
enable this command.
.. program:: example list
@@ -52,7 +52,7 @@ The command help must label the command as a beta.
"""Display example details
(Caution: This is a beta command and subject to change.
- Use global option --enable-beta-commands to enable
+ Use global option --os-beta-command to enable
this command)
"""
@@ -60,13 +60,9 @@ Implementation
--------------
The command must raise a ``CommandError`` exception if beta commands
-are not enabled via ``--enable-beta-commands`` global option.
+are not enabled via ``--os-beta-command`` global option.
.. code-block:: python
def take_action(self, parsed_args):
- if not self.app.options.enable_beta_commands:
- msg = _('Caution: This is a beta command and subject to '
- 'change. Use global option --enable-beta-commands '
- 'to enable this command.')
- raise exceptions.CommandError(msg)
+ self.validate_os_beta_command_enabled()