Modify error quotation marks

modify Chinese quotation marks to English
Change-Id: I60b038f997f0e84e75a2902bf0e8c0606312ea71
This commit is contained in:
wudong 2018-02-06 14:38:27 +08:00
parent 12d3157a96
commit 0dedf5a9a1
2 changed files with 6 additions and 6 deletions

View File

@ -368,8 +368,8 @@ clean_step:
clean_steps:
description: |
An ordered list of cleaning steps that will be performed on the node. A
cleaning step is a dictionary with required keys interface and step, and
optional key args. If specified, the value for args is a keyword variable
cleaning step is a dictionary with required keys 'interface' and 'step', and
optional key 'args'. If specified, the value for 'args' is a keyword variable
argument dictionary that is passed to the cleaning step method.
in: body
required: false

View File

@ -1182,9 +1182,9 @@ def _validate_argsinfo(argsinfo):
:param argsinfo: a dictionary of keyword arguments where key is the name of
the argument and value is a dictionary as follows::
description: <description>. Required. This should include
'description': <description>. Required. This should include
possible values.
required: Boolean. Optional; default is False. True if this
'required': Boolean. Optional; default is False. True if this
argument is required. If so, it must be specified in
the clean request; false if it is optional.
:raises InvalidParameterValue: if any of the arguments are invalid
@ -1276,9 +1276,9 @@ def clean_step(priority, abortable=False, argsinfo=None):
:param argsinfo: a dictionary of keyword arguments where key is the name of
the argument and value is a dictionary as follows::
description: <description>. Required. This should include
'description': <description>. Required. This should include
possible values.
required: Boolean. Optional; default is False. True if this
'required': Boolean. Optional; default is False. True if this
argument is required. If so, it must be specified in
the clean request; false if it is optional.
:raises InvalidParameterValue: if any of the arguments are invalid