Merge "Fixed trivial issue in exception message"
This commit is contained in:
commit
3a7e91df4a
@ -36,8 +36,9 @@ def update_actions(definition, scope='private', identifier=None):
|
|||||||
|
|
||||||
if identifier and len(actions) > 1:
|
if identifier and len(actions) > 1:
|
||||||
raise exc.InputException(
|
raise exc.InputException(
|
||||||
"More than one actions are not supported for update with UUID "
|
"More than one actions are not supported for "
|
||||||
"provided."
|
"update with identifier. [identifier: %s]" %
|
||||||
|
identifier
|
||||||
)
|
)
|
||||||
|
|
||||||
db_actions = []
|
db_actions = []
|
||||||
|
@ -86,8 +86,9 @@ def update_workflows(definition, scope='private', identifier=None):
|
|||||||
|
|
||||||
if identifier and len(wfs) > 1:
|
if identifier and len(wfs) > 1:
|
||||||
raise exc.InputException(
|
raise exc.InputException(
|
||||||
"More than one workflows are not supported for update with UUID "
|
"More than one workflows are not supported for "
|
||||||
"provided."
|
"update with identifier. [identifier: %s]" %
|
||||||
|
identifier
|
||||||
)
|
)
|
||||||
|
|
||||||
db_wfs = []
|
db_wfs = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user